From 9ca9570269effcddbf432f6c4845058306d46e2e Mon Sep 17 00:00:00 2001 From: Mark Mandel Date: Wed, 22 Sep 2021 15:21:34 -0700 Subject: [PATCH] Preparation for 0.3.0 Update items for 0.3.0 development. Also made a small typo fix to the release template while I was in there. Closes #398 --- Cargo.toml | 4 ++-- build/templates/release-issue.md | 2 +- macros/Cargo.toml | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index d76e4c1822..55f3111469 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -19,7 +19,7 @@ members = [".", "./macros"] [package] name = "quilkin" -version = "0.2.0" +version = "0.3.0-dev" authors = ["Mark Mandel ", "Ifeanyi Ubah "] license = "Apache-2.0" description = "Quilkin is a non-transparent UDP proxy specifically designed for use with large scale multiplayer dedicated game server deployments, to ensure security, access control, telemetry data, metrics and more." @@ -38,7 +38,7 @@ test = true [dependencies] # Local -quilkin-macros = { version = "0.2.0", path = "./macros" } +quilkin-macros = { version = "0.3.0-dev", path = "./macros" } # Crates.io backoff = "0.3" diff --git a/build/templates/release-issue.md b/build/templates/release-issue.md index 49662b632c..09123fac3b 100644 --- a/build/templates/release-issue.md +++ b/build/templates/release-issue.md @@ -35,7 +35,7 @@ - [ ] Attach all the remaining cloud build artifacts to the release. - [ ] Run `git remote update && git checkout main && git reset --hard upstream/main` to ensure your code is in line with upstream. -- [ ] Run `git checkout -b release-{version} && git push upstream` to create a release branch. +- [ ] Run `git checkout -b release-{version} && git push upstream release-{version}` to create a release branch. - [ ] Publish to [crates.io/crates/quilkin-macros](https://crates.io/crates/quilkin-macros): run `cd macros && cargo publish` - [ ] Publish to [crates.io/crates/quilkin](https://crates.io/crates/quilkin): run `cargo publish` - [ ] Submit the release. diff --git a/macros/Cargo.toml b/macros/Cargo.toml index 7ca5e4eba6..4af3d73d2e 100644 --- a/macros/Cargo.toml +++ b/macros/Cargo.toml @@ -16,7 +16,7 @@ [package] name = "quilkin-macros" -version = "0.2.0" +version = "0.3.0-dev" authors = ["Erin Power "] license-file = "../LICENSE" description = "Quilkin is a non-transparent UDP proxy specifically designed for use with large scale multiplayer dedicated game server deployments, to ensure security, access control, telemetry data, metrics and more."