Skip to content

Commit

Permalink
version: 1.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
osipxd committed Apr 17, 2024
1 parent 930c26f commit fc9c961
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 4 deletions.
5 changes: 4 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
## [Unreleased]

## [1.0.0] - 2024.04.17

### Delegates to create encrypted DataStores

Delegates `encryptedDataStore` and `encryptedPreferencesDataStore` were added to simplify DataStore creation.
Expand Down Expand Up @@ -133,7 +135,8 @@ To continue use it, change the dependency module in your build script:
- gradle-infrastructure `0.12.1``0.17`
- Migrate dependencies to version catalogs

[unreleased]: https://github.com/osipxd/encrypted-datastore/compare/v1.0.0-beta01...main
[unreleased]: https://github.com/osipxd/encrypted-datastore/compare/v1.0.0...main
[1.0.0]: https://github.com/osipxd/encrypted-datastore/compare/v1.0.0-beta01...v1.0.0
[1.0.0-beta01]: https://github.com/osipxd/encrypted-datastore/compare/v1.0.0-alpha04...v1.0.0-beta01
[1.0.0-alpha04]: https://github.com/osipxd/encrypted-datastore/compare/v1.0.0-alpha03...v1.0.0-alpha04
[1.0.0-alpha03]: https://github.com/osipxd/encrypted-datastore/compare/v1.0.0-alpha02...v1.0.0-alpha03
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,9 +20,9 @@ repositories {
}

dependencies {
implementation("io.github.osipxd:security-crypto-datastore:1.0.0-beta01")
implementation("io.github.osipxd:security-crypto-datastore:1.0.0")
// Or, if you want to use Preferences DataStore:
implementation("io.github.osipxd:security-crypto-datastore-preferences:1.0.0-beta01")
implementation("io.github.osipxd:security-crypto-datastore-preferences:1.0.0")
}
```

Expand Down
2 changes: 1 addition & 1 deletion build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ nexusPublishing {
val datastoreVersion = libs.versions.datastore.get()
allprojects {
group = "io.github.osipxd"
version = "$datastoreVersion-beta01"
version = "$datastoreVersion"
}

redmadrobot {
Expand Down

0 comments on commit fc9c961

Please sign in to comment.