File tree Expand file tree Collapse file tree 5 files changed +24
-6
lines changed
src/main/java/org/seasar/doma/internal Expand file tree Collapse file tree 5 files changed +24
-6
lines changed Original file line number Diff line number Diff line change @@ -6,7 +6,7 @@ plugins {
66}
77
88group = ' org.seasar.doma'
9- version = ' 2.25.0-SNAPSHOT '
9+ version = ' 2.25.0'
1010sourceCompatibility = jdkVersion
1111targetCompatibility = jdkVersion
1212
Original file line number Diff line number Diff line change @@ -93,8 +93,8 @@ build.gradle as an example:
9393 }
9494
9595 dependencies {
96- annotationProcessor "org.seasar.doma:doma:2.25.0-SNAPSHOT "
97- implementation "org.seasar.doma:doma:2.25.0-SNAPSHOT "
96+ annotationProcessor "org.seasar.doma:doma:2.25.0"
97+ implementation "org.seasar.doma:doma:2.25.0"
9898 }
9999
100100 repositories {
Original file line number Diff line number Diff 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.25.0-SNAPSHOT "
103- implementation "org.seasar.doma:doma:2.25.0-SNAPSHOT "
102+ kapt "org.seasar.doma:doma:2.25.0"
103+ implementation "org.seasar.doma:doma:2.25.0"
104104 }
105105
106106 If you use resource files such as SQL files, make the kapt find them:
Original file line number Diff line number Diff line change 22Release notes
33=============
44
5+ v2.25.0: 2019-08-25
6+ ======================
7+
8+ * `GH322 <https://github.com/domaframework/doma/pull/322 >`_
9+ Describe settings for IntelliJ IDEA Community Edition 2019.2.1
10+ * `GH321 <https://github.com/domaframework/doma/pull/321 >`_
11+ Support domain mapping using ExternalDomain of Java Array
12+ * `GH314 <https://github.com/domaframework/doma/pull/314 >`_
13+ Upgrade google-java-format to 1.7
14+ * `GH313 <https://github.com/domaframework/doma/pull/313 >`_
15+ Upgrade spotless-plugin-gradle to 3.20.0
16+ * `GH312 <https://github.com/domaframework/doma/pull/312 >`_
17+ Clarify support for Java 12
18+ * `GH311 <https://github.com/domaframework/doma/pull/311 >`_
19+ Introduce wrapper classes dedicated to primitive types
20+ * `GH310 <https://github.com/domaframework/doma/pull/310 >`_
21+ Upgrade JUnit to 5.4.0
22+
523v2.24.0: 2019-02-23
624======================
725
Original file line number Diff line number Diff 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.25.0-SNAPSHOT " ;
10+ private static final String VERSION = "2.25.0" ;
1111
1212 public static String getName () {
1313 return NAME ;
You can’t perform that action at this time.
0 commit comments