Skip to content

Commit c04187a

Browse files
committed
2.22.0 released
1 parent b79e4ba commit c04187a

File tree

5 files changed

+22
-6
lines changed

5 files changed

+22
-6
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.21.1-SNAPSHOT'
11+
version = '2.22.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
@@ -93,8 +93,8 @@ build.gradle as an example:
9393
}
9494
9595
dependencies {
96-
annotationProcessor "org.seasar.doma:doma:2.21.1-SNAPSHOT"
97-
implementation "org.seasar.doma:doma:2.21.1-SNAPSHOT"
96+
annotationProcessor "org.seasar.doma:doma:2.22.0"
97+
implementation "org.seasar.doma:doma:2.22.0"
9898
}
9999
100100
repositories {

docs/kotlin-support.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -99,8 +99,8 @@ Add the dependencies using the `kapt` and `implementation` configuration in your
9999
.. code-block:: groovy
100100
101101
dependencies {
102-
kapt "org.seasar.doma:doma:2.21.1-SNAPSHOT"
103-
implementation "org.seasar.doma:doma:2.21.1-SNAPSHOT"
102+
kapt "org.seasar.doma:doma:2.22.0"
103+
implementation "org.seasar.doma:doma:2.22.0"
104104
}
105105
106106
If you use resource files such as SQL files, make the kapt find them:

docs/release-notes.rst

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,22 @@
22
Release Notes
33
=============
44

5+
v2.22.0: 2019-01-20
6+
======================
7+
8+
* `GH278 <https://github.com/domaframework/doma/pull/278>`_
9+
Remove unused Dockerfile
10+
* `GH272 <https://github.com/domaframework/doma/pull/272>`_
11+
Add experimental Sql annotation
12+
* `GH279 <https://github.com/domaframework/doma/pull/279>`_
13+
`GH277 <https://github.com/domaframework/doma/pull/277>`_
14+
`GH274 <https://github.com/domaframework/doma/pull/274>`_
15+
`GH273 <https://github.com/domaframework/doma/pull/273>`_
16+
`GH272 <https://github.com/domaframework/doma/pull/272>`_
17+
`GH270 <https://github.com/domaframework/doma/pull/270>`_
18+
`GH269 <https://github.com/domaframework/doma/pull/269>`_
19+
Translate documents from Japanese into English
20+
521
v2.21.0: 2019-01-06
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
@@ -7,7 +7,7 @@ public final class Artifact {
77

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

10-
private static final String VERSION = "2.21.1-SNAPSHOT";
10+
private static final String VERSION = "2.22.0";
1111

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

0 commit comments

Comments
 (0)