Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Prepare for release 0.0.9. #99

Merged
merged 1 commit into from
Jan 20, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 9 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,15 @@
Changelog
=========

Version 0.0.9
----------------------------
* Remove Context from SimpleStore constructor
* Update AtomicFile implementation
* Prepare for Kotlin support
* Update dependencies: appcompat, guavaAndroid, kotlin, protoLite
* Update tooling


Version 0.0.8
----------------------------
* Upgrade to latest protolite runtime.
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,9 +18,9 @@ To include in a gradle project, add to your dependencies:

```groovy
dependencies {
implementation 'com.uber.simplestore:simplestore:0.0.8'
implementation 'com.uber.simplestore:simplestore:0.0.9'
// If using protocol buffers, also add:
implementation 'com.uber.simplestore:simplestore-proto:0.0.8'
implementation 'com.uber.simplestore:simplestore-proto:0.0.9'
}
```

Expand Down
2 changes: 1 addition & 1 deletion RELEASING.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ Releasing
=========

1. Change the version in `gradle.properties` to a non-SNAPSHOT version.
2. Update the `CHANGELOG.md` for the impending release.
2. Update the `CHANGELOG.md` and `README.md` for the impending release.
3. `git commit -am "Prepare for release X.Y.Z."` (where X.Y.Z is the new version)
4. `git tag -a X.Y.Z -m "Version X.Y.Z"` (where X.Y.Z is the new version)
5. `./gradlew clean publish --no-configuration-cache --no-daemon --no-parallel`
Expand Down
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ org.gradle.jvmargs=-Xmx1536m
kotlin.code.style=official
android.useAndroidX=true

VERSION_NAME=0.0.9-SNAPSHOT
VERSION_NAME=0.0.9
VERSION_CODE=6
GROUP=com.uber.simplestore

Expand Down
Loading