File tree Expand file tree Collapse file tree 4 files changed +24
-4
lines changed
src/main/java/org/seasar/doma/internal Expand file tree Collapse file tree 4 files changed +24
-4
lines changed Original file line number Diff line number Diff line change @@ -4,7 +4,7 @@ apply plugin: 'signing'
44apply plugin : ' maven'
55
66group = ' org.seasar.doma'
7- version = ' 2.19.4-SNAPSHOT '
7+ version = ' 2.20.0 '
88ext. isReleaseVersion = ! version. endsWith(" SNAPSHOT" )
99ext. encoding = ' UTF-8'
1010sourceCompatibility = jdkVersion
Original file line number Diff line number Diff line change @@ -121,9 +121,9 @@ Gradle でビルドを行う際のポイントは以下のとおりです。
121121
122122 dependencies {
123123 // domaの注釈処理を実行することを示す
124- annotationProcessor "org.seasar.doma:doma:2.19.4-SNAPSHOT "
124+ annotationProcessor "org.seasar.doma:doma:2.20.0 "
125125 // domaへの依存を示す
126- implementation "org.seasar.doma:doma:2.19.4-SNAPSHOT "
126+ implementation "org.seasar.doma:doma:2.20.0 "
127127 }
128128
129129 repositories {
Original file line number Diff line number Diff line change 22リリースノート
33==============
44
5+ v2.20.0: 2018-12-23
6+ ======================
7+
8+ * `GH255 <https://github.com/domaframework/doma/pull/255 >`_
9+ Support Gradle incremental annotation processing
10+ * `GH254 <https://github.com/domaframework/doma/pull/254 >`_
11+ Specify supported Java versions
12+ * `GH253 <https://github.com/domaframework/doma/pull/253 >`_
13+ Explain how to write gradle build script in Gradle 5.0
14+ * `GH252 <https://github.com/domaframework/doma/pull/252 >`_
15+ Polish Gradle configuration
16+ * `GH251 <https://github.com/domaframework/doma/pull/251 >`_
17+ Use Gradle 5.0
18+ * `GH248 <https://github.com/domaframework/doma/pull/248 >`_
19+ Fix mistake in abbreviation for JRE
20+ * `GH247 <https://github.com/domaframework/doma/pull/247 >`_
21+ Load a class with Class.forName when the context class loader fails to load the class
22+ * `GH245 <https://github.com/domaframework/doma/pull/245 >`_
23+ Revise wrong descriptions about `@Update.excludeNull `, `@BatchUpdate.include ` and `@BatchUpdate.exclude `
24+
525v2.19.3: 2018-09-02
626======================
727
Original file line number Diff line number Diff line change @@ -26,7 +26,7 @@ public final class Artifact {
2626
2727 private static final String NAME = "Doma" ;
2828
29- private static final String VERSION = "2.19.4-SNAPSHOT " ;
29+ private static final String VERSION = "2.20.0 " ;
3030
3131 public static String getName () {
3232 return NAME ;
You can’t perform that action at this time.
0 commit comments