From 02b76231cf4fa015093cea75286a82f306c833b0 Mon Sep 17 00:00:00 2001 From: Rachel Tublitz Date: Tue, 1 Dec 2020 09:08:31 -0500 Subject: [PATCH] chore: tag 0.8.3 (#937) --- CHANGELOG.md | 9 +++++++++ Cargo.lock | 2 +- Cargo.toml | 2 +- README.md | 2 +- 4 files changed, 12 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 7f033496db..27ad48b09c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,12 @@ + +### 0.8.3 (2020-11-30) + + +#### Chore + +* Update to rust 1.48 (#927) ([ea1f222b](https://github.com/mozilla-services/syncstorage-rs/commit/ea1f222b219ddd78684945058c3b3430ed636982)) +* Update pyo3 to the latest version (#938) ([cc7d9d36]https://github.com/mozilla-services/syncstorage-rs/commit/cc7d9d367310aeb7551668c049f1a895a6eae853)) + ## 0.8.2 (2020-11-20) diff --git a/Cargo.lock b/Cargo.lock index 46b3628b56..12dcfe0d58 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -2965,7 +2965,7 @@ dependencies = [ [[package]] name = "syncstorage" -version = "0.8.2" +version = "0.8.3" dependencies = [ "actix-cors", "actix-http", diff --git a/Cargo.toml b/Cargo.toml index f0da0c8b29..4bef74eeb0 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "syncstorage" -version = "0.8.2" +version = "0.8.3" license = "MPL-2.0" authors = [ "Ben Bangert ", diff --git a/README.md b/README.md index 7bb30265f1..f3d6b5f66f 100644 --- a/README.md +++ b/README.md @@ -219,7 +219,7 @@ Functional tests live in [server-syncstorage](https://github.com/mozilla-service 1. `cargo build --release` - Build with the release profile [release mode](https://doc.rust-lang.org/book/ch14-01-release-profiles.html). 1. `clog -C CHANGELOG.md` - Generate release notes. We're using [clog](https://github.com/clog-tool/clog-cli) for release notes. Add a `-p`, `-m` or `-M` flag to denote major/minor/patch version, ie `clog -C CHANGELOG.md -p`. 1. Review the `CHANGELOG.md` file and ensure all relevant changes since the last tag are included. -1. Create a new [release in Sentry](https://docs.sentry.io/product/releases/#create-release): `bash scripts/sentry-release.sh`. If you're doing this for the first time, checkout the [tips below](https://github.com/mozilla-services/syncstorage-rs#troubleshooting) for troubleshooting sentry cli access. +1. Create a new [release in Sentry](https://docs.sentry.io/product/releases/#create-release): `VERSION={release-version-here} bash scripts/sentry-release.sh`. If you're doing this for the first time, checkout the [tips below](https://github.com/mozilla-services/syncstorage-rs#troubleshooting) for troubleshooting sentry cli access. 1. `git commit -am "chore: tag "` to commit the new version and changes 1. `git tag -s -m "chore: tag " ` to create a signed tag of the current HEAD commit for release. 1. `git push origin release/` to push the commits to a new origin release branch