Skip to content

Commit 38a03f0

Browse files
committed
2.24.0 released
1 parent 6df9a0f commit 38a03f0

File tree

5 files changed

+30
-6
lines changed

5 files changed

+30
-6
lines changed

build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ plugins {
66
}
77

88
group = 'org.seasar.doma'
9-
version = '2.24.0-SNAPSHOT'
9+
version = '2.24.0'
1010
sourceCompatibility = jdkVersion
1111
targetCompatibility = jdkVersion
1212

docs/build.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -93,8 +93,8 @@ build.gradle as an example:
9393
}
9494
9595
dependencies {
96-
annotationProcessor "org.seasar.doma:doma:2.24.0-SNAPSHOT"
97-
implementation "org.seasar.doma:doma:2.24.0-SNAPSHOT"
96+
annotationProcessor "org.seasar.doma:doma:2.24.0"
97+
implementation "org.seasar.doma:doma:2.24.0"
9898
}
9999
100100
repositories {

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-
kapt "org.seasar.doma:doma:2.24.0-SNAPSHOT"
103-
implementation "org.seasar.doma:doma:2.24.0-SNAPSHOT"
102+
kapt "org.seasar.doma:doma:2.24.0"
103+
implementation "org.seasar.doma:doma:2.24.0"
104104
}
105105
106106
If you use resource files such as SQL files, make the kapt find them:

docs/release-notes.rst

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

5+
v2.24.0: 2019-02-23
6+
======================
7+
8+
* `GH308 <https://github.com/domaframework/doma/pull/308>`_
9+
Implement toString methods to make debug easy
10+
* `GH307 <https://github.com/domaframework/doma/pull/307>`_
11+
Polish the org.seasar.doma.internal package
12+
* `GH306 <https://github.com/domaframework/doma/pull/306>`_
13+
Remove Japanese comments
14+
* `GH305 <https://github.com/domaframework/doma/pull/305>`_
15+
Register the option "doma.config.path" to suppress a warning message
16+
* `GH304 <https://github.com/domaframework/doma/pull/304>`_
17+
Simplify the DefaultPropertyType class
18+
* `GH303 <https://github.com/domaframework/doma/pull/303>`_
19+
Simplify generators
20+
* `GH301 <https://github.com/domaframework/doma/pull/301>`_
21+
Fix compile error in procedure and function methods
22+
* `GH300 <https://github.com/domaframework/doma/pull/300>`_
23+
Support bound type parameters in domain classes
24+
* `GH299 <https://github.com/domaframework/doma/pull/299>`_
25+
Migrate from JUnit 3 to JUnit 5
26+
* `GH298 <https://github.com/domaframework/doma/pull/398>`_
27+
Polish build script
28+
529
v2.23.0: 2019-02-03
630
======================
731

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.24.0-SNAPSHOT";
10+
private static final String VERSION = "2.24.0";
1111

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

0 commit comments

Comments
 (0)