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.13.1-SNAPSHOT '
7+ version = ' 2.14.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.13.1-SNAPSHOT "
85+ compile "org.seasar.doma:doma:2.14.0 "
8686 }
8787
8888 .. note ::
Original file line number Diff line number Diff line change 22リリースノート
33==============
44
5+ v2.14.0: 2017-01-14
6+ ======================
7+
8+ * `GH183 <https://github.com/domaframework/doma/pull/183 >`_
9+ BatchUpdateExecutor, BatchDeleteExecutor, MapBatchInsertBuilder を追加
10+ * `GH182 <https://github.com/domaframework/doma/pull/182 >`_
11+ エンベッダブルクラスにプロパティを定義しない場合に生成されるコードがコンパイルエラーになっていたのを修正
12+ * `GH181 <https://github.com/domaframework/doma/pull/181 >`_
13+ SQLテンプレートで組み立てられたSQLを扱うための `@SqlProcessor ` を追加
14+ * `GH180 <https://github.com/domaframework/doma/pull/180 >`_
15+ Lombok をサポート
16+ * `GH179 <https://github.com/domaframework/doma/pull/179 >`_
17+ StandardExpressionFunctions#escapeがescapeCharを使用していない
18+ * `GH177 <https://github.com/domaframework/doma/pull/177 >`_
19+ Kotlin 1.0.6対応
20+ * `GH176 <https://github.com/domaframework/doma/pull/176 >`_
21+ BatchInsertExecutorを追加
22+ * `GH175 <https://github.com/domaframework/doma/pull/175 >`_
23+ 組み込み関数の LocalDate, LocalDateTime 対応
24+ * `GH174 <https://github.com/domaframework/doma/pull/174 >`_
25+ Mapをパラメータとして自動でInsert文を組み立てるMapInsertBuilderを追加
26+
527v2.13.0: 2016-11-13
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.13.1-SNAPSHOT " ;
29+ private static final String VERSION = "2.14.0 " ;
3030
3131 public static String getName () {
3232 return NAME ;
You can’t perform that action at this time.
0 commit comments