File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff 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
Original file line number Diff line number Diff 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```
3131or 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
3636The typical usage of this class is to set the version in Gradle build files for C Thing Software projects.
Original file line number Diff line number Diff 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
2828val isCIServer = " true" == System .getenv(" CTHING_CI" )?.lowercase()
2929val now = System .currentTimeMillis()
You can’t perform that action at this time.
0 commit comments