Skip to content

Commit

Permalink
Merge pull request #67 from infinum/update-release-version
Browse files Browse the repository at this point in the history
Update release version to 1.3.3
  • Loading branch information
KCeh authored May 20, 2024
2 parents 6331c95 + ea1d05f commit a32fd89
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -57,15 +57,15 @@ Then add the following dependencies in your app `build.gradle` or `build.gradle.
**Groovy**

```groovy
def sentinelVersion = "1.3.2"
def sentinelVersion = "1.3.3"
debugImplementation "com.infinum.sentinel:sentinel:$sentinelVersion"
releaseImplementation "com.infinum.sentinel:sentinel-noop:$sentinelVersion"
```

**KotlinDSL**

```kotlin
val sentinelVersion = "1.3.2"
val sentinelVersion = "1.3.3"
debugImplementation("com.infinum.sentinel:sentinel:$sentinelVersion")
releaseImplementation("com.infinum.sentinel:sentinel-no-op:$sentinelVersion")
```
Expand Down
2 changes: 1 addition & 1 deletion config.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ ext {
]
releaseConfig = [
"group" : "com.infinum.sentinel",
"version" : "$major.$minor.$patch-alpha01", //todo remove alpha for release
"version" : "$major.$minor.$patch",
"versionCode": major * 100 * 100 + minor * 100 + patch
]
}
2 changes: 1 addition & 1 deletion gradle/libs.versions.toml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[versions]
sentinel = "1.3.3-alpha01"
sentinel = "1.3.3"
gradle = "8.3.2"
kotlin = "1.9.22"
coroutines = "1.8.0"
Expand Down

0 comments on commit a32fd89

Please sign in to comment.