Skip to content

Commit d59944d

Browse files
committed
2.4.0 released
1 parent 750b6c2 commit d59944d

File tree

4 files changed

+21
-3
lines changed

4 files changed

+21
-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.3.2-SNAPSHOT'
7+
version = '2.4.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.3.2-SNAPSHOT"
85+
compile "org.seasar.doma:doma:2.4.0"
8686
}
8787
8888
.. note::

docs/sources/release-notes.rst

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

5+
v2.4.0: 2015-08-14
6+
======================
7+
8+
* `GH81 <https://github.com/domaframework/doma/pull/81>`_
9+
リソースバンドルが取得できない場合はデフォルトのリソースバンドルにフォールバックする
10+
* `GH84 <https://github.com/domaframework/doma/pull/84>`_
11+
populate を使ったメソッドで DOMA4122 が出る問題を修正
12+
* `GH86 <https://github.com/domaframework/doma/pull/86>`_
13+
Version number spec is different from the document
14+
* `GH87 <https://github.com/domaframework/doma/pull/87>`_
15+
StandardExpressionFunctionsのサブクラスにpublicなコンストラクタを追加
16+
* `GH88 <https://github.com/domaframework/doma/pull/88>`_
17+
JdbcLoggerのメソッドのtypoを修正。 Failuer -> Failure
18+
* `GH89 <https://github.com/domaframework/doma/pull/89>`_
19+
PortableObjectTypeをジェネリクスにして、String等をvalueTypeとして指定できるように
20+
* `GH93 <https://github.com/domaframework/doma/pull/93>`_
21+
JdbcMappingHint#getDomainClass() がドメインクラスを返さない問題を修正
22+
523
v2.3.1: 2015-05-30
624
======================
725

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

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

0 commit comments

Comments
 (0)