Skip to content

Commit f72d1ba

Browse files
committed
2.12.0 released
1 parent 2754a59 commit f72d1ba

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.11.1-SNAPSHOT'
7+
version = '2.12.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.11.1-SNAPSHOT"
85+
compile "org.seasar.doma:doma:2.12.0"
8686
}
8787
8888
.. 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.12.0: 2016-07-14
6+
======================
7+
8+
* `GH161 <https://github.com/domaframework/doma/pull/161>`_
9+
SQLファイルのキャッシュを削除するためのメソッドを追加
10+
* `GH160 <https://github.com/domaframework/doma/pull/160>`_
11+
エンベッダブルクラスをネストした型として定義することをサポート
12+
* `GH159 <https://github.com/domaframework/doma/pull/159>`_
13+
エンティティクラスをネストした型として定義することをサポート
14+
* `GH158 <https://github.com/domaframework/doma/pull/158>`_
15+
ドキュメントのコピーライトの日付を更新
16+
* `GH156 <https://github.com/domaframework/doma/pull/156>`_
17+
SQLファイルの存在チェックでパスの大文字小文字を区別するように修正
18+
* `GH155 <https://github.com/domaframework/doma/pull/155>`_
19+
fix typo
20+
521
v2.11.0: 2016-06-18
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.11.1-SNAPSHOT";
29+
private static final String VERSION = "2.12.0";
3030

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

0 commit comments

Comments
 (0)