Skip to content

Commit a860f1e

Browse files
authored
Merge pull request #391 from domaframework/release
Release
2 parents e51f8a9 + 9a454b3 commit a860f1e

File tree

7 files changed

+34
-12
lines changed

7 files changed

+34
-12
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -55,8 +55,8 @@ Build with Gradle
5555

5656
```groovy
5757
dependencies {
58-
implementation "org.seasar.doma:doma-core:2.30.0"
59-
annotationProcessor "org.seasar.doma:doma-processor:2.30.0"
58+
implementation "org.seasar.doma:doma-core:2.31.0"
59+
annotationProcessor "org.seasar.doma:doma-processor:2.31.0"
6060
}
6161
```
6262

docs/build.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,8 +35,8 @@ Write your build.gradle as follows:
3535
.. code-block:: groovy
3636
3737
dependencies {
38-
implementation "org.seasar.doma:doma-core:2.30.1-SNAPSHOT"
39-
annotationProcessor "org.seasar.doma:doma-processor:2.30.1-SNAPSHOT"
38+
implementation "org.seasar.doma:doma-core:2.31.0"
39+
annotationProcessor "org.seasar.doma:doma-processor:2.31.0"
4040
}
4141
4242
To simplify your build.script, we recommend that you use the `Doma Compile Plugin`_.

docs/criteria-api.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -67,8 +67,8 @@ To use the Criteria API, write your build.gradle as follows:
6767
}
6868
6969
dependencies {
70-
kapt "org.seasar.doma:doma-processor:2.30.1-SNAPSHOT"
71-
implementation "org.seasar.doma:doma-criteria:2.30.1-SNAPSHOT"
70+
kapt "org.seasar.doma:doma-processor:2.31.0"
71+
implementation "org.seasar.doma:doma-criteria:2.31.0"
7272
}
7373
7474
Check points:

docs/kotlin-support.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -99,8 +99,8 @@ Add the dependencies using the `kapt` and `implementation` configuration in your
9999
.. code-block:: groovy
100100
101101
dependencies {
102-
implementation "org.seasar.doma:doma-core:2.30.1-SNAPSHOT"
103-
kapt "org.seasar.doma:doma-processor:2.30.1-SNAPSHOT"
102+
implementation "org.seasar.doma:doma-core:2.31.0"
103+
kapt "org.seasar.doma:doma-processor:2.31.0"
104104
}
105105
106106
To simplify your build.script, we recommend you use

docs/release-notes.rst

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,28 @@
22
Release notes
33
=============
44

5+
v2.31.0: 2020-04-18
6+
======================
7+
8+
* `GH388 <https://github.com/domaframework/doma/pull/388>`_
9+
Enhance the CommentContext class to accept a message
10+
* `GH387 <https://github.com/domaframework/doma/pull/387>`_
11+
Support the Sql annotation officially
12+
* `GH386 <https://github.com/domaframework/doma/pull/386>`_
13+
Add the "getQuery" method to the "Command" interface
14+
* `GH384 <https://github.com/domaframework/doma/pull/384>`_
15+
Resolve type parameters with actual type arguments for generic types
16+
* `GH382 <https://github.com/domaframework/doma/pull/382>`_
17+
Add the Criteria API
18+
* `GH381 <https://github.com/domaframework/doma/pull/381>`_
19+
Replace version before build
20+
* `GH380 <https://github.com/domaframework/doma/pull/380>`_
21+
Allow uncommitted files before release
22+
* `GH379 <https://github.com/domaframework/doma/pull/379>`_
23+
Don't replace the version with the snapshot version in documents
24+
* `GH378 <https://github.com/domaframework/doma/pull/378>`_
25+
Allow no-args default method in Kotlin
26+
527
v2.30.0: 2020-04-18
628
======================
729

doma-core/src/main/java/org/seasar/doma/internal/Artifact.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ public final class Artifact {
77

88
private static final String NAME = "Doma";
99

10-
private static final String VERSION = "2.30.1-SNAPSHOT";
10+
private static final String VERSION = "2.31.0";
1111

1212
public static String getName() {
1313
return NAME;

gradle.properties

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
group=org.seasar.doma
2-
version=2.30.1-SNAPSHOT
2+
version=2.31.0
33
encoding=UTF-8
44
systemProp.org.gradle.internal.publish.checksums.insecure=true
55
projectUrl=https://github.com/domaframework/doma
66
githubUrl[email protected]:domaframework/doma.git
77
sonatypeUsername=
88
sonatypePassword=
99
release.useAutomaticVersion=true
10-
release.releaseVersion=2.30.1
11-
release.newVersion=2.30.2-SNAPSHOT
10+
release.releaseVersion=2.31.0
11+
release.newVersion=2.31.1-SNAPSHOT

0 commit comments

Comments
 (0)