Skip to content

Commit 861eca9

Browse files
committed
2.23.0 released
1 parent 7b8e0e0 commit 861eca9

File tree

5 files changed

+34
-7
lines changed

5 files changed

+34
-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.23.0-SNAPSHOT'
11+
version = '2.23.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.23.0-SNAPSHOT"
97-
implementation "org.seasar.doma:doma:2.23.0-SNAPSHOT"
96+
annotationProcessor "org.seasar.doma:doma:2.23.0"
97+
implementation "org.seasar.doma:doma:2.23.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.23.0-SNAPSHOT"
103-
implementation "org.seasar.doma:doma:2.23.0-SNAPSHOT"
102+
kapt "org.seasar.doma:doma:2.23.0"
103+
implementation "org.seasar.doma:doma:2.23.0"
104104
}
105105
106106
If you use resource files such as SQL files, make the kapt find them:

docs/release-notes.rst

Lines changed: 28 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,34 @@
11
=============
2-
Release Notes
2+
Release notes
33
=============
44

5+
v2.23.0: 2019-02-03
6+
======================
7+
8+
* `GH294 <https://github.com/domaframework/doma/pull/294>`_
9+
Support array types for bind and literal variable directives
10+
* `GH276 <https://github.com/domaframework/doma/pull/276>`_
11+
Support array types for loop directives
12+
* `GH286 <https://github.com/domaframework/doma/pull/286>`_
13+
Support automatic removal of unnecessary ORDER BY and GROUP BY clauses
14+
* `GH295 <https://github.com/domaframework/doma/pull/295>`_
15+
Polish messages
16+
* `GH284 <https://github.com/domaframework/doma/pull/284>`_
17+
Preserve the auto-commit state of a JDBC connection
18+
* `GH283 <https://github.com/domaframework/doma/pull/283>`_
19+
Run tests in each annotation processor instance
20+
* `GH296 <https://github.com/domaframework/doma/pull/296>`_
21+
`GH293 <https://github.com/domaframework/doma/pull/293>`_
22+
`GH292 <https://github.com/domaframework/doma/pull/292>`_
23+
`GH291 <https://github.com/domaframework/doma/pull/291>`_
24+
`GH290 <https://github.com/domaframework/doma/pull/290>`_
25+
`GH289 <https://github.com/domaframework/doma/pull/289>`_
26+
`GH288 <https://github.com/domaframework/doma/pull/288>`_
27+
`GH287 <https://github.com/domaframework/doma/pull/287>`_
28+
`GH285 <https://github.com/domaframework/doma/pull/285>`_
29+
`GH282 <https://github.com/domaframework/doma/pull/282>`_
30+
Polish documents
31+
532
v2.22.0: 2019-01-20
633
======================
734

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.23.0-SNAPSHOT";
10+
private static final String VERSION = "2.23.0";
1111

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

0 commit comments

Comments
 (0)