From 2669302ced109abff6c1c375c675988d73513d86 Mon Sep 17 00:00:00 2001 From: Jake Shadle Date: Wed, 1 Sep 2021 16:52:37 +0200 Subject: [PATCH] Release 0.2.0 --- CHANGELOG.md | 4 +++- Cargo.toml | 2 +- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 37ad798..c8ec733 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,6 +6,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] - ReleaseDate +## [0.2.0] - 2021-09-01 ### Added - Added wrappers around the types exposed by `GameServer` to improve the type information provided, for example, all timestamps are now `chrono::DateTime` and all durations are now `std::time::Duration` so that one doesn't need to look at the protobuf definitions or Agones documentation to figure what units are used etc. @@ -17,5 +18,6 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - First pass implementation for [Agones 1.16.0](https://agones.dev/site/blog/2021/07/20/1.16.0-kubernetes-1.19-golang-1.15/). -[Unreleased]: https://github.com/EmbarkStudios/rymder/compare/0.1.0...HEAD +[Unreleased]: https://github.com/EmbarkStudios/rymder/compare/0.2.0...HEAD +[0.2.0]: https://github.com/EmbarkStudios/rymder/compare/0.1.0...0.2.0 [0.1.0]: https://github.com/EmbarkStudios/rymder/releases/tag/0.1.0 diff --git a/Cargo.toml b/Cargo.toml index 7f6f700..f20fce7 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "rymder" -version = "0.1.0" +version = "0.2.0" authors = ["Embark ", "Jake Shadle "] edition = "2018" description = "Unofficial agones client SDK"