Skip to content

Commit 8fc9084

Browse files
committed
[Gradle Release Plugin] - pre tag commit: '2.29.0'.
2 parents c1798b7 + ece9ea9 commit 8fc9084

File tree

8 files changed

+39
-6
lines changed

8 files changed

+39
-6
lines changed

README.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -50,12 +50,20 @@ public class App {
5050
}
5151
```
5252

53+
For more complete examples, see [domaframework/simple-examples](https://github.com/domaframework/simple-examples).
5354

5455
Documentation
5556
---------------------
5657

5758
https://doma.readthedocs.io/
5859

60+
Related projects
61+
---------------------
62+
63+
- [doma-spring-boot](https://github.com/domaframework/doma-spring-boot) : Supports integration with Spring Boot
64+
- [doma-compile-plugin](https://github.com/domaframework/doma-compile-plugin) : Makes compilation easy
65+
- [doma-codegen-plugin](https://github.com/domaframework/doma-codegen-plugin) : Generates Java and SQL files
66+
5967
Major versions
6068
---------------------
6169

build.gradle

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -134,6 +134,7 @@ signing {
134134
build.dependsOn publishToMavenLocal
135135

136136
release {
137+
newVersionCommitMessage = '[Gradle Release Plugin] - [skip ci] new version commit: '
137138
pushReleaseVersionBranch = 'release'
138139
git {
139140
requireBranch = 'snapshot'

docs/faq.rst

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -82,10 +82,20 @@ You may get the following message, though the file exists:
8282
8383
When you use Eclipse, check that the location of the output folder of resources is
8484
same as the one for the class files in the Java Build Path dialog.
85+
You can avoid this trouble by generating eclipse setting files automatically.
86+
See also :ref:`eclipse-build`.
8587

8688
When you use Gradle, check that the resource files are copied to ``compileJava.destinationDir``
87-
in advance of the compileJava task. See also :ref:`build-with-gradle`.
89+
in advance of the compileJava task.
90+
You can avoid this trouble by using the Doma Compile Plugin.
91+
See also :ref:`build-with-gradle`.
92+
93+
Do you provide any code generation tools?
94+
-----------------------------------------
8895

96+
Yes.
97+
We have the `Doma CodeGen plugin <https://github.com/domaframework/doma-codegen-plugin>`_
98+
that generates Java and SQL files from Database.
8999

90100
Features as a database access library
91101
=====================================

docs/index.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ Doma has various strengths:
2424

2525
This document consists of following sections:
2626

27-
* `User Documentation`_u
27+
* `User Documentation`_
2828
* `Developer Documentation`_
2929
* `About Doma`_
3030
* `Links`_

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.4"
103-
implementation "org.seasar.doma:doma:2.28.4"
102+
kapt "org.seasar.doma:doma:2.29.0"
103+
implementation "org.seasar.doma:doma:2.29.0"
104104
}
105105
106106
To simplify your build.script, we recommend you use

docs/release-notes.rst

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

5+
v2.29.0: 2020-04-05
6+
======================
7+
8+
* `GH353 <https://github.com/domaframework/doma/pull/353>`_
9+
Remove a resource bundle
10+
* `GH352 <https://github.com/domaframework/doma/pull/352>`_
11+
Escape a single quotation to make format success
12+
* `GH351 <https://github.com/domaframework/doma/pull/351>`_
13+
Update sample build.gradle to make it work on Gradle 6.2.2 without any warnings
14+
* `GH350 <https://github.com/domaframework/doma/pull/350>`_
15+
Enable incremental annotation processing for the DataTypeProcessor
16+
* `GH349 <https://github.com/domaframework/doma/pull/349>`_
17+
Upgrade to Gradle 6.2.2
18+
519
v2.28.0: 2020-03-18
620
======================
721

gradle.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
group=org.seasar.doma
2-
version=2.28.4
2+
version=2.29.0
33
projectUrl=https://github.com/domaframework/doma
44
githubUrl[email protected]:domaframework/doma.git
55
sonatypeUrl=https://oss.sonatype.org/service/local/staging/deploy/maven2/

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

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

0 commit comments

Comments
 (0)