Skip to content

Commit f65b200

Browse files
committed
2.19.3 released
1 parent 91ea6fa commit f65b200

File tree

4 files changed

+19
-3
lines changed

4 files changed

+19
-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.19.3-SNAPSHOT'
7+
version = '2.19.3'
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
@@ -95,7 +95,7 @@ Gradle でビルドを行う際のポイントは以下のとおりです。
9595
}
9696
9797
dependencies {
98-
compile "org.seasar.doma:doma:2.19.3-SNAPSHOT"
98+
compile "org.seasar.doma:doma:2.19.3"
9999
}
100100
101101
.. note::

docs/sources/release-notes.rst

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

5+
v2.19.3: 2018-09-02
6+
======================
7+
8+
* `GH242 <https://github.com/domaframework/doma/pull/242>`_
9+
Remove wrapper task
10+
* `GH241 <https://github.com/domaframework/doma/pull/241>`_
11+
Upgrade Gradle version
12+
* `GH240 <https://github.com/domaframework/doma/pull/240>`_
13+
Refactor gradle script for eclipse
14+
* `GH239 <https://github.com/domaframework/doma/pull/239>`_
15+
Resolve an external domain class by traversing class hierarchy
16+
* `GH225 <https://github.com/domaframework/doma/pull/225>`_
17+
Add documents for IntelliJ IDEA
18+
* `GH223 <https://github.com/domaframework/doma/pull/223>`_
19+
Fix Javadoc comment for Update#includeUnchanged
20+
521
v2.19.2: 2018-03-11
622
======================
723

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

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

0 commit comments

Comments
 (0)