Skip to content

Commit 9530feb

Browse files
committed
2.21.0 released
1 parent fd7054e commit 9530feb

File tree

4 files changed

+33
-7
lines changed

4 files changed

+33
-7
lines changed

build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ apply plugin: 'signing'
88
apply plugin: 'maven'
99

1010
group = 'org.seasar.doma'
11-
version = '2.20.1-SNAPSHOT'
11+
version = '2.21.0'
1212
ext.isReleaseVersion = !version.endsWith("SNAPSHOT")
1313
ext.encoding = 'UTF-8'
1414
sourceCompatibility = jdkVersion

docs/build.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -108,9 +108,9 @@ Gradle でビルドを行う際のポイントは以下のとおりです。
108108
109109
dependencies {
110110
// domaの注釈処理を実行することを示す
111-
annotationProcessor "org.seasar.doma:doma:2.20.1-SNAPSHOT"
111+
annotationProcessor "org.seasar.doma:doma:2.21.0"
112112
// domaへの依存を示す
113-
implementation "org.seasar.doma:doma:2.20.1-SNAPSHOT"
113+
implementation "org.seasar.doma:doma:2.21.0"
114114
}
115115
116116
repositories {

docs/release-notes.rst

Lines changed: 29 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,32 @@
1-
==============
2-
リリースノート
3-
==============
1+
=============
2+
Release Notes
3+
=============
4+
5+
v2.21.0: 2019-01-06
6+
======================
7+
8+
* `GH267 <https://github.com/domaframework/doma/pull/267>`_
9+
Change the description of Doma
10+
* `GH266 <https://github.com/domaframework/doma/pull/266>`_
11+
Remove descriptions of Doma 3
12+
* `GH265 <https://github.com/domaframework/doma/pull/265>`_
13+
Polish annotation processing
14+
* `GH264 <https://github.com/domaframework/doma/pull/264>`_
15+
Improve build script example
16+
* `GH263 <https://github.com/domaframework/doma/pull/263>`_
17+
Translate resource bundle messages from Japanese into English
18+
* `GH262 <https://github.com/domaframework/doma/pull/262>`_
19+
Translate javadoc comments from Japanese into English
20+
* `GH261 <https://github.com/domaframework/doma/pull/261>`_
21+
Change the sphinx langulage option
22+
* `GH260 <https://github.com/domaframework/doma/pull/260>`_
23+
Translate development.rst
24+
* `GH259 <https://github.com/domaframework/doma/pull/259>`_
25+
Format with google-java-format 1.6
26+
* `GH258 <https://github.com/domaframework/doma/pull/258>`_
27+
Translate docs from Japanese into English
28+
* `GH257 <https://github.com/domaframework/doma/pull/258>`_
29+
Use Sphinx 1.8.2
430

531
v2.20.0: 2018-12-23
632
======================

src/main/java/org/seasar/doma/internal/Artifact.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ public final class Artifact {
77

88
private static final String NAME = "Doma";
99

10-
private static final String VERSION = "2.20.1-SNAPSHOT";
10+
private static final String VERSION = "2.21.0";
1111

1212
public static String getName() {
1313
return NAME;

0 commit comments

Comments
 (0)