Skip to content

Commit 76c4aec

Browse files
committed
2.28.0 released
1 parent 8638a21 commit 76c4aec

File tree

6 files changed

+19
-6
lines changed

6 files changed

+19
-6
lines changed

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -78,6 +78,7 @@ Major versions
7878
| Java 11 | | v |
7979
| Java 12 | | v |
8080
| Java 13 | | v |
81+
| Java 14 | | v |
8182

8283
License
8384
-------

build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ plugins {
66
}
77

88
group = 'org.seasar.doma'
9-
version = '2.28.0-SNAPSHOT'
9+
version = '2.28.0'
1010
sourceCompatibility = jdkVersion
1111
targetCompatibility = jdkVersion
1212

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.28.0-SNAPSHOT"
97-
implementation "org.seasar.doma:doma:2.28.0-SNAPSHOT"
96+
annotationProcessor "org.seasar.doma:doma:2.28.0"
97+
implementation "org.seasar.doma:doma:2.28.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.28.0-SNAPSHOT"
103-
implementation "org.seasar.doma:doma:2.28.0-SNAPSHOT"
102+
kapt "org.seasar.doma:doma:2.28.0"
103+
implementation "org.seasar.doma:doma:2.28.0"
104104
}
105105
106106
If you use resource files such as SQL files, make the kapt find them:

docs/release-notes.rst

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

5+
v2.28.0: 2020-03-18
6+
======================
7+
8+
* `GH347 <https://github.com/domaframework/doma/pull/347>`_
9+
Stored functions return null when they must return the basic type of list
10+
* `GH346 <https://github.com/domaframework/doma/pull/346>`_
11+
Add the DataType annotation
12+
* `GH344 <https://github.com/domaframework/doma/pull/344>`_
13+
Support records
14+
* `GH343 <https://github.com/domaframework/doma/pull/343>`_
15+
Fix some mistakes in document
16+
517
v2.27.1: 2020-02-07
618
======================
719

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

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

0 commit comments

Comments
 (0)