Skip to content

Commit

Permalink
[Gradle Release Plugin] - pre tag commit: '2.60.0'.
Browse files Browse the repository at this point in the history
  • Loading branch information
github-actions[bot] committed Jun 1, 2024
1 parent 9987cb4 commit b8425cb
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 7 deletions.
10 changes: 5 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -95,17 +95,17 @@ For Java projects:

```groovy
dependencies {
implementation("org.seasar.doma:doma-core:2.59.0")
annotationProcessor("org.seasar.doma:doma-processor:2.59.0")
implementation("org.seasar.doma:doma-core:2.60.0")
annotationProcessor("org.seasar.doma:doma-processor:2.60.0")
}
```

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

```groovy
dependencies {
implementation("org.seasar.doma:doma-kotlin:2.59.0")
kapt("org.seasar.doma:doma-processor:2.59.0")
implementation("org.seasar.doma:doma-kotlin:2.60.0")
kapt("org.seasar.doma:doma-processor:2.60.0")
}
```

Expand All @@ -118,7 +118,7 @@ For Java projects:
```xml
...
<properties>
<doma.version>2.59.0</doma.version>
<doma.version>2.60.0</doma.version>
</properties>
...
<dependencies>
Expand Down
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.59.1-SNAPSHOT";
private static final String VERSION = "2.60.0";

public static String getName() {
return NAME;
Expand Down
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
group=org.seasar.doma
version=2.59.1-SNAPSHOT
version=2.60.0
encoding=UTF-8
projectUrl=https://github.com/domaframework/doma
githubUrl=git@github.com:domaframework/doma.git
Expand Down

0 comments on commit b8425cb

Please sign in to comment.