Skip to content

Commit c808691

Browse files
committed
Prepare for next release.
1 parent 83e6ba0 commit c808691

3 files changed

Lines changed: 18 additions & 5 deletions

File tree

CHANGELOG.md

Lines changed: 14 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,18 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77

88
## [unreleased]
99

10+
## [3.0.0] - 2025-10-22
11+
12+
### Changed
13+
14+
- To be a CI build, the CTHING_CI environment variable must be defined and must now
15+
have a value of `true` (case-insensitive)
16+
17+
### Added
18+
19+
- The `ProjectVersion.isCIBuild()` method has been added as a complement to the
20+
`ProjectVersion.isDeveloperBuild()` method
21+
1022
## [2.0.0] - 2024-10-25
1123

1224
### Changed
@@ -19,6 +31,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
1931

2032
- First release
2133

22-
[unreleased]: https://github.com/cthing/cthing-projectversion/compare/2.0.0...HEAD
34+
[unreleased]: https://github.com/cthing/cthing-projectversion/compare/3.0.0...HEAD
35+
[3.0.0]: https://github.com/cthing/cthing-projectversion/releases/tag/3.0.0
2336
[2.0.0]: https://github.com/cthing/cthing-projectversion/releases/tag/2.0.0
2437
[1.0.0]: https://github.com/cthing/cthing-projectversion/releases/tag/1.0.0

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,12 +25,12 @@ the following Maven dependency:
2525
<dependency>
2626
<groupId>org.cthing</groupId>
2727
<artifactId>cthing-projectversion</artifactId>
28-
<version>2.0.0</version>
28+
<version>3.0.0</version>
2929
</dependency>
3030
```
3131
or the following Gradle dependency:
3232
```kotlin
33-
implementation("org.cthing:cthing-projectversion:2.0.0")
33+
implementation("org.cthing:cthing-projectversion:3.0.0")
3434
```
3535

3636
The typical usage of this class is to set the version in Gradle build files for C Thing Software projects.

build.gradle.kts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,8 +22,8 @@ plugins {
2222
alias(libs.plugins.versions)
2323
}
2424

25-
val baseVersion = "3.0.0"
26-
val isSnapshot = false
25+
val baseVersion = "3.0.1"
26+
val isSnapshot = true
2727

2828
val isCIServer = "true" == System.getenv("CTHING_CI")?.lowercase()
2929
val now = System.currentTimeMillis()

0 commit comments

Comments
 (0)