Skip to content

Commit 59b549f

Browse files
committed
2.18.0 released
1 parent f21e5cc commit 59b549f

File tree

4 files changed

+15
-3
lines changed

4 files changed

+15
-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.17.1-SNAPSHOT'
7+
version = '2.18.0'
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.17.1-SNAPSHOT"
85+
compile "org.seasar.doma:doma:2.18.0"
8686
}
8787
8888
.. note::

docs/sources/release-notes.rst

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

5+
v2.18.0: 2017-10-28
6+
======================
7+
8+
* `GH208 <https://github.com/domaframework/doma/pull/208>`_
9+
Use `javax.annotation.processing.Generated` on JDK 9
10+
* `GH207 <https://github.com/domaframework/doma/pull/207>`_
11+
If the result of the expression is `Long`, it is evaluated as `Float`.
12+
* `GH206 <https://github.com/domaframework/doma/pull/206>`_
13+
Fix a wrong annotation parameter in a Docs example.
14+
* `GH205 <https://github.com/domaframework/doma/pull/205>`_
15+
Remove full-width `` and `_` from wild cards in Oracle dialect
16+
517
v2.17.0: 2017-09-09
618
======================
719

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

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

0 commit comments

Comments
 (0)