From 2733ba2e27646fcd1c2d591459a204e82f877a77 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Marcel=20M=C3=A4rtens?= Date: Sat, 20 Mar 2021 13:07:09 +0100 Subject: [PATCH] Change the version number to 0.9 --- CHANGELOG.md | 13 ++++++++++++- Cargo.lock | 22 +++++++++++----------- client/Cargo.toml | 2 +- common/Cargo.toml | 2 +- common/base/Cargo.toml | 2 +- common/ecs/Cargo.toml | 2 +- common/net/Cargo.toml | 2 +- common/sys/Cargo.toml | 2 +- server-cli/Cargo.toml | 2 +- server/Cargo.toml | 2 +- voxygen/Cargo.toml | 2 +- voxygen/anim/Cargo.toml | 2 +- world/Cargo.toml | 2 +- 13 files changed, 34 insertions(+), 23 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 68d63d0aae..82c68250b4 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -9,6 +9,16 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ### Added +### Changed + +### Removed + +### Fixed + +## [0.9.0] - 2021-03-20 + +### Added + - Plugin can now retrieve data from ECS - Added chat commands for inviting, kicking, leaving, and promoting in groups - Aura system @@ -564,7 +574,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 _0.1.0 was part of the legacy engine_ -[unreleased]: https://gitlab.com/veloren/veloren/compare?from=v0.8.0&to=master +[unreleased]: https://gitlab.com/veloren/veloren/compare?from=v0.9.0&to=master +[0.9.0]: https://gitlab.com/veloren/veloren/compare?from=v0.8.0&to=v0.9.0 [0.8.0]: https://gitlab.com/veloren/veloren/compare?from=v0.7.0&to=v0.8.0 [0.7.0]: https://gitlab.com/veloren/veloren/compare?from=v0.6.0&to=v0.7.0 [0.6.0]: https://gitlab.com/veloren/veloren/compare?from=v0.5.0&to=v0.6.0 diff --git a/Cargo.lock b/Cargo.lock index 5ccb383aeb..daf58dbd3d 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -5525,7 +5525,7 @@ dependencies = [ [[package]] name = "veloren-client" -version = "0.8.0" +version = "0.9.0" dependencies = [ "async-channel", "authc", @@ -5555,7 +5555,7 @@ dependencies = [ [[package]] name = "veloren-common" -version = "0.8.0" +version = "0.9.0" dependencies = [ "approx 0.4.0", "arraygen", @@ -5595,7 +5595,7 @@ dependencies = [ [[package]] name = "veloren-common-base" -version = "0.8.0" +version = "0.9.0" dependencies = [ "directories-next", "tracing", @@ -5604,7 +5604,7 @@ dependencies = [ [[package]] name = "veloren-common-ecs" -version = "0.8.0" +version = "0.9.0" dependencies = [ "float-cmp", "specs", @@ -5614,7 +5614,7 @@ dependencies = [ [[package]] name = "veloren-common-net" -version = "0.8.0" +version = "0.9.0" dependencies = [ "authc", "hashbrown", @@ -5629,7 +5629,7 @@ dependencies = [ [[package]] name = "veloren-common-sys" -version = "0.8.0" +version = "0.9.0" dependencies = [ "bincode", "hashbrown", @@ -5726,7 +5726,7 @@ dependencies = [ [[package]] name = "veloren-server" -version = "0.8.0" +version = "0.9.0" dependencies = [ "authc", "chrono", @@ -5767,7 +5767,7 @@ dependencies = [ [[package]] name = "veloren-server-cli" -version = "0.8.0" +version = "0.9.0" dependencies = [ "ansi-parser", "clap", @@ -5790,7 +5790,7 @@ dependencies = [ [[package]] name = "veloren-voxygen" -version = "0.8.0" +version = "0.9.0" dependencies = [ "backtrace", "bincode", @@ -5860,7 +5860,7 @@ dependencies = [ [[package]] name = "veloren-voxygen-anim" -version = "0.8.0" +version = "0.9.0" dependencies = [ "find_folder", "inline_tweak", @@ -5874,7 +5874,7 @@ dependencies = [ [[package]] name = "veloren-world" -version = "0.8.0" +version = "0.9.0" dependencies = [ "arr_macro", "assets_manager", diff --git a/client/Cargo.toml b/client/Cargo.toml index 366bc4c7de..6c17fd38a0 100644 --- a/client/Cargo.toml +++ b/client/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "veloren-client" -version = "0.8.0" +version = "0.9.0" authors = ["Joshua Barretto "] edition = "2018" diff --git a/common/Cargo.toml b/common/Cargo.toml index ae126f3ed1..bca6817839 100644 --- a/common/Cargo.toml +++ b/common/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "veloren-common" -version = "0.8.0" +version = "0.9.0" authors = ["Joshua Barretto ", "Maciej Ćwięka ", "Imbris "] edition = "2018" diff --git a/common/base/Cargo.toml b/common/base/Cargo.toml index 3c5472da15..79b7af6fbd 100644 --- a/common/base/Cargo.toml +++ b/common/base/Cargo.toml @@ -3,7 +3,7 @@ authors = ["Marcel Märtens "] edition = "2018" name = "veloren-common-base" description = "minimal dependency for crates to now depend on whole common" -version = "0.8.0" +version = "0.9.0" [features] tracy = ["tracy-client"] diff --git a/common/ecs/Cargo.toml b/common/ecs/Cargo.toml index 342d0de80b..800d8fe12d 100644 --- a/common/ecs/Cargo.toml +++ b/common/ecs/Cargo.toml @@ -2,7 +2,7 @@ authors = ["Marcel Märtens "] edition = "2018" name = "veloren-common-ecs" -version = "0.8.0" +version = "0.9.0" [features] tracy = ["common-base/tracy"] diff --git a/common/net/Cargo.toml b/common/net/Cargo.toml index 5d8773a164..083afece47 100644 --- a/common/net/Cargo.toml +++ b/common/net/Cargo.toml @@ -2,7 +2,7 @@ authors = ["Marcel Märtens "] edition = "2018" name = "veloren-common-net" -version = "0.8.0" +version = "0.9.0" [features] tracy = ["common/tracy"] diff --git a/common/sys/Cargo.toml b/common/sys/Cargo.toml index a8c3224cde..b2ac1ec354 100644 --- a/common/sys/Cargo.toml +++ b/common/sys/Cargo.toml @@ -2,7 +2,7 @@ authors = ["Marcel Märtens "] edition = "2018" name = "veloren-common-sys" -version = "0.8.0" +version = "0.9.0" [features] tracy = ["common/tracy"] diff --git a/server-cli/Cargo.toml b/server-cli/Cargo.toml index 4fc4646e65..d7c22484fb 100644 --- a/server-cli/Cargo.toml +++ b/server-cli/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "veloren-server-cli" -version = "0.8.0" +version = "0.9.0" authors = ["Joshua Barretto "] edition = "2018" diff --git a/server/Cargo.toml b/server/Cargo.toml index 1675a3a196..3866cc5b55 100644 --- a/server/Cargo.toml +++ b/server/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "veloren-server" -version = "0.8.0" +version = "0.9.0" authors = ["Joshua Barretto "] edition = "2018" diff --git a/voxygen/Cargo.toml b/voxygen/Cargo.toml index 4c9d5342e6..ed8979c9bb 100644 --- a/voxygen/Cargo.toml +++ b/voxygen/Cargo.toml @@ -3,7 +3,7 @@ authors = ["Joshua Barretto ", "Imbris ", "Imbris "] edition = "2018" name = "veloren-voxygen-anim" -version = "0.8.0" +version = "0.9.0" [lib] name = "voxygen_anim" diff --git a/world/Cargo.toml b/world/Cargo.toml index 9efb2939fb..1292da1f77 100644 --- a/world/Cargo.toml +++ b/world/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "veloren-world" -version = "0.8.0" +version = "0.9.0" authors = ["Joshua Barretto "] edition = "2018"