Skip to content

Commit

Permalink
2.22.0 released
Browse files Browse the repository at this point in the history
  • Loading branch information
nakamura-to committed Jan 20, 2019
1 parent b79e4ba commit c04187a
Show file tree
Hide file tree
Showing 5 changed files with 22 additions and 6 deletions.
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ apply plugin: 'signing'
apply plugin: 'maven'

group = 'org.seasar.doma'
version = '2.21.1-SNAPSHOT'
version = '2.22.0'
ext.isReleaseVersion = !version.endsWith("SNAPSHOT")
ext.encoding = 'UTF-8'
sourceCompatibility = jdkVersion
Expand Down
4 changes: 2 additions & 2 deletions docs/build.rst
Original file line number Diff line number Diff line change
Expand Up @@ -93,8 +93,8 @@ build.gradle as an example:
}
dependencies {
annotationProcessor "org.seasar.doma:doma:2.21.1-SNAPSHOT"
implementation "org.seasar.doma:doma:2.21.1-SNAPSHOT"
annotationProcessor "org.seasar.doma:doma:2.22.0"
implementation "org.seasar.doma:doma:2.22.0"
}
repositories {
Expand Down
4 changes: 2 additions & 2 deletions docs/kotlin-support.rst
Original file line number Diff line number Diff line change
Expand Up @@ -99,8 +99,8 @@ Add the dependencies using the `kapt` and `implementation` configuration in your
.. code-block:: groovy
dependencies {
kapt "org.seasar.doma:doma:2.21.1-SNAPSHOT"
implementation "org.seasar.doma:doma:2.21.1-SNAPSHOT"
kapt "org.seasar.doma:doma:2.22.0"
implementation "org.seasar.doma:doma:2.22.0"
}
If you use resource files such as SQL files, make the kapt find them:
Expand Down
16 changes: 16 additions & 0 deletions docs/release-notes.rst
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,22 @@
Release Notes
=============

v2.22.0: 2019-01-20
======================

* `GH278 <https://github.com/domaframework/doma/pull/278>`_
Remove unused Dockerfile
* `GH272 <https://github.com/domaframework/doma/pull/272>`_
Add experimental Sql annotation
* `GH279 <https://github.com/domaframework/doma/pull/279>`_
`GH277 <https://github.com/domaframework/doma/pull/277>`_
`GH274 <https://github.com/domaframework/doma/pull/274>`_
`GH273 <https://github.com/domaframework/doma/pull/273>`_
`GH272 <https://github.com/domaframework/doma/pull/272>`_
`GH270 <https://github.com/domaframework/doma/pull/270>`_
`GH269 <https://github.com/domaframework/doma/pull/269>`_
Translate documents from Japanese into English

v2.21.0: 2019-01-06
======================

Expand Down
2 changes: 1 addition & 1 deletion src/main/java/org/seasar/doma/internal/Artifact.java
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ public final class Artifact {

private static final String NAME = "Doma";

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

public static String getName() {
return NAME;
Expand Down

0 comments on commit c04187a

Please sign in to comment.