Skip to content

Commit 9dcb424

Browse files
committed
2.10.0 released
1 parent 3b3aeea commit 9dcb424

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.9.1-SNAPSHOT'
7+
version = '2.10.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.9.1-SNAPSHOT"
85+
compile "org.seasar.doma:doma:2.10.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.10.0: 2016-05-28
6+
======================
7+
8+
* `GH146 <https://github.com/domaframework/doma/pull/146>`_
9+
Embeddable なオブジェクトが null の場合に更新系の処理が失敗する不具合を修正
10+
* `GH145 <https://github.com/domaframework/doma/pull/145>`_
11+
Kotlin のサポートについてドキュメントを追加
12+
* `GH142 <https://github.com/domaframework/doma/pull/142>`_
13+
エンベッダブルクラスのドキュメントを追加
14+
* `GH141 <https://github.com/domaframework/doma/pull/141>`_
15+
エンティティクラスが継承をしている場合の親プロパティへのアクセス方法を簡易化
16+
* `GH140 <https://github.com/domaframework/doma/pull/140>`_
17+
プリミティブ型のプロパティにnullがアサインされる場合に例外が発生していた不具合をデフォルト値が設定されるように修正
18+
* `GH139 <https://github.com/domaframework/doma/pull/139>`_
19+
`@Embeddable` をサポート
20+
* `GH138 <https://github.com/domaframework/doma/pull/138>`_
21+
Kotlin でイミュータブルなエンティティを定義する際 `@ParameterName` を使用する必要性を除去
22+
523
v2.9.0: 2016-05-16
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.9.1-SNAPSHOT";
29+
private static final String VERSION = "2.10.0";
3030

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

0 commit comments

Comments
 (0)