Skip to content

Commit 811d377

Browse files
[Gradle Release Plugin] - pre tag commit: '2.53.2'.
1 parent 0c5df6e commit 811d377

File tree

7 files changed

+14
-14
lines changed

7 files changed

+14
-14
lines changed

README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -100,17 +100,17 @@ For Java projects:
100100

101101
```groovy
102102
dependencies {
103-
implementation("org.seasar.doma:doma-core:2.53.1")
104-
annotationProcessor("org.seasar.doma:doma-processor:2.53.1")
103+
implementation("org.seasar.doma:doma-core:2.53.2")
104+
annotationProcessor("org.seasar.doma:doma-processor:2.53.2")
105105
}
106106
```
107107

108108
For Kotlin projects, use doma-kotlin instead of doma-core and use kapt in place of annotationProcessor:
109109

110110
```groovy
111111
dependencies {
112-
implementation("org.seasar.doma:doma-kotlin:2.53.1")
113-
kapt("org.seasar.doma:doma-processor:2.53.1")
112+
implementation("org.seasar.doma:doma-kotlin:2.53.2")
113+
kapt("org.seasar.doma:doma-processor:2.53.2")
114114
}
115115
```
116116

@@ -123,7 +123,7 @@ For Java projects:
123123
```xml
124124
...
125125
<properties>
126-
<doma.version>2.53.1</doma.version>
126+
<doma.version>2.53.2</doma.version>
127127
</properties>
128128
...
129129
<dependencies>

docs/build.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,8 +35,8 @@ Write your build.gradle as follows:
3535
.. code-block:: groovy
3636
3737
dependencies {
38-
implementation "org.seasar.doma:doma-core:2.53.1"
39-
annotationProcessor "org.seasar.doma:doma-processor:2.53.1"
38+
implementation "org.seasar.doma:doma-core:2.53.2"
39+
annotationProcessor "org.seasar.doma:doma-processor:2.53.2"
4040
}
4141
4242
To simplify your build.script, we recommend that you use the `Doma Compile Plugin`_.

docs/kotlin-support.rst

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -158,7 +158,7 @@ You can write build.gradle.kts as follows:
158158
.. code-block:: kotlin
159159
160160
dependencies {
161-
implementation("org.seasar.doma:doma-kotlin:2.53.1")
161+
implementation("org.seasar.doma:doma-kotlin:2.53.2")
162162
}
163163
164164
Code Generation
@@ -179,8 +179,8 @@ For example, you can write build.gradle.kts as follows:
179179
.. code-block:: kotlin
180180
181181
dependencies {
182-
kapt("org.seasar.doma:doma-processor:2.53.1")
183-
implementation("org.seasar.doma:doma-kotlin:2.53.1")
182+
kapt("org.seasar.doma:doma-processor:2.53.2")
183+
implementation("org.seasar.doma:doma-kotlin:2.53.2")
184184
}
185185
186186
To simplify your build script, we recommend you use

docs/slf4j-support.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ Doma provides the doma-slf4j artifact to adapt SLF4J.
1919
.. code-block:: xml
2020
2121
dependencies {
22-
implementation("org.seasar.doma:doma-slf4j:2.53.1")
22+
implementation("org.seasar.doma:doma-slf4j:2.53.2")
2323
// Use an arbitrary SLF4J binding
2424
runtimeOnly("ch.qos.logback:logback-classic:1.2.3")
2525
}

docs/sql.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -813,7 +813,7 @@ Gradle
813813
.. code-block:: xml
814814
815815
dependencies {
816-
implementation("org.seasar.doma:doma-template:2.53.1")
816+
implementation("org.seasar.doma:doma-template:2.53.2")
817817
}
818818
819819
Usage

doma-core/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.53.2-SNAPSHOT";
10+
private static final String VERSION = "2.53.2";
1111

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

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.53.2-SNAPSHOT
2+
version=2.53.2
33
encoding=UTF-8
44
projectUrl=https://github.com/domaframework/doma
55
githubUrl=[email protected]:domaframework/doma.git

0 commit comments

Comments
 (0)