Skip to content

Commit ff49766

Browse files
committed
2.19.1 released
1 parent f6cea6a commit ff49766

File tree

4 files changed

+11
-3
lines changed

4 files changed

+11
-3
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.20.0-SNAPSHOT'
7+
version = '2.19.1'
88
ext.isReleaseVersion = !version.endsWith("SNAPSHOT")
99
ext.encoding = 'UTF-8'
1010
sourceCompatibility = jdkVersion

docs/sources/build.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@ Gradle でビルドを行う際のポイントは以下のとおりです。
8282
}
8383
8484
dependencies {
85-
compile "org.seasar.doma:doma:2.20.0-SNAPSHOT"
85+
compile "org.seasar.doma:doma:2.19.1"
8686
}
8787
8888
.. note::

docs/sources/release-notes.rst

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,14 @@
22
リリースノート
33
==============
44

5+
v2.19.1: 2018-01-08
6+
======================
7+
8+
* `GH216 <https://github.com/domaframework/doma/pull/216>`_
9+
Document that the auto-generated value is set only if the identity field is either null or less than 0
10+
* `GH215 <https://github.com/domaframework/doma/pull/215>`_
11+
Fix TypeDeclaration#removeOverriddenMethodDeclarations to prevent IllegalStateException
12+
513
v2.19.0: 2017-11-19
614
======================
715

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.20.0-SNAPSHOT";
29+
private static final String VERSION = "2.19.1";
3030

3131
public static String getName() {
3232
return NAME;

0 commit comments

Comments
 (0)