Skip to content

Commit c6bde44

Browse files
committed
2.20.0 released
1 parent ff6d909 commit c6bde44

File tree

4 files changed

+24
-4
lines changed

4 files changed

+24
-4
lines changed

build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ apply plugin: 'signing'
44
apply plugin: 'maven'
55

66
group = 'org.seasar.doma'
7-
version = '2.19.4-SNAPSHOT'
7+
version = '2.20.0'
88
ext.isReleaseVersion = !version.endsWith("SNAPSHOT")
99
ext.encoding = 'UTF-8'
1010
sourceCompatibility = jdkVersion

docs/sources/build.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff 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 {

docs/sources/release-notes.rst

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,26 @@
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+
525
v2.19.3: 2018-09-02
626
======================
727

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff 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;

0 commit comments

Comments
 (0)