Skip to content

Commit f37a1e6

Browse files
committed
clean up maven version
1 parent f75c548 commit f37a1e6

3 files changed

Lines changed: 6 additions & 9 deletions

File tree

CHANGELOG.md

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,11 +11,12 @@ Feature Rollouts enable progressive rollouts with full impact analytics, metric
1111
and confidence intervals.
1212
See [Feature Rollout docs](https://support.optimizely.com/hc/en-us/articles/45552846481037-Run-Feature-Rollouts-in-Feature-Experimentation) for more information.
1313

14-
- Remove legacy flag-level holdout fields ([#604](https://github.com/optimizely/java-sdk/pull/604))
1514
- Remove experiment type validation from config parsing ([#602](https://github.com/optimizely/java-sdk/pull/602))
1615
- Add Feature Rollout support ([#601](https://github.com/optimizely/java-sdk/pull/601))
17-
- Arnica risk fixes ([#600](https://github.com/optimizely/java-sdk/pull/600))
18-
- Fix documentation links in README.md ([#598](https://github.com/optimizely/java-sdk/pull/598))
16+
17+
### Fixes and Improvements
18+
- Remove legacy flag-level holdout fields ([#604](https://github.com/optimizely/java-sdk/pull/604))
19+
1920

2021
## [4.3.1]
2122
Jan 20, 2025

build.gradle

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -30,9 +30,8 @@ allprojects {
3030
group = 'com.optimizely.ab'
3131

3232
def github_tagged_version = System.getenv('GITHUB_TAG')
33-
if (github_tagged_version != null) {
34-
version = github_tagged_version
35-
}
33+
// keep SNAPSHOT for fallback for local build version
34+
version = github_tagged_version ?: '0.0.0-SNAPSHOT'
3635

3736
ext.isReleaseVersion = !version.endsWith("SNAPSHOT")
3837
}

gradle.properties

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,3 @@
1-
# Maven version
2-
version = 4.4.0
3-
41
# Artifact paths
52
mavenS3Bucket = optimizely-maven
63

0 commit comments

Comments
 (0)