File tree Expand file tree Collapse file tree 4 files changed +25
-3
lines changed
src/main/java/org/seasar/doma/internal Expand file tree Collapse file tree 4 files changed +25
-3
lines changed Original file line number Diff line number Diff line change @@ -4,7 +4,7 @@ apply plugin: 'signing'
44apply plugin : ' maven'
55
66group = ' org.seasar.doma'
7- version = ' 2.1.1-SNAPSHOT '
7+ version = ' 2.2.0 '
88ext. isReleaseVersion = ! version. endsWith(" SNAPSHOT" )
99ext. encoding = ' UTF-8'
1010sourceCompatibility = jdkVersion
Original file line number Diff line number Diff line change @@ -82,7 +82,7 @@ Gradle でビルドを行う際のポイントは以下のとおりです。
8282 }
8383
8484 dependencies {
85- compile "org.seasar.doma:doma:2.1.1-SNAPSHOT "
85+ compile "org.seasar.doma:doma:2.2.0 "
8686 }
8787
8888 .. note ::
Original file line number Diff line number Diff line change 22リリースノート
33==============
44
5+ v2.2.0: 2015-03-28
6+ ======================
7+
8+ * `GH58 <https://github.com/domaframework/doma/pull/58 >`_
9+ StringUtilのfromCamelCaseToSnakeCaseで、カラム名に数字が含まれている場合意図している結果にならない
10+ * `GH59 <https://github.com/domaframework/doma/pull/59 >`_
11+ Windows環境でテストが失敗する問題を修正
12+ * `GH60 <https://github.com/domaframework/doma/pull/60 >`_
13+ Mssql2008Dialect の getName() が返す値を変更しました
14+ * `GH61 <https://github.com/domaframework/doma/pull/61 >`_
15+ SQL Server 2012 から追加された OFFSET-FETCH をページング処理に使う
16+ * `GH64 <https://github.com/domaframework/doma/pull/64 >`_
17+ イミュータブルなエンティティの取得でNullPointerException が発生するバグを修正しました
18+ * `GH66 <https://github.com/domaframework/doma/pull/66 >`_
19+ ネーミング規約の適用をコンパイル時から実行時に変更
20+ * `GH67 <https://github.com/domaframework/doma/pull/67 >`_
21+ SQL Server の OPTION 句が存在するとページングが正しく実行されない問題を修正しました
22+ * `GH70 <https://github.com/domaframework/doma/pull/70 >`_
23+ EntityListenerの取得はEntityListenerProviderを介するようにしました
24+ * `GH71 <https://github.com/domaframework/doma/pull/71 >`_
25+ インターフェースにも@Domainで注釈できるようにしました
26+
527v2.1.0: 2014-12-30
628======================
729
Original file line number Diff line number Diff 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.1.1-SNAPSHOT " ;
29+ private static final String VERSION = "2.2.0 " ;
3030
3131 public static String getName () {
3232 return NAME ;
You can’t perform that action at this time.
0 commit comments