diff --git a/CHANGELOG.md b/CHANGELOG.md index 8a6d616d3a..4466ae1851 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.10.0] - 2021-06-12 + +### Added + - New Skills for Climbing: Climbing Speed and Climbing Cost - Pickaxes (can be used to collect gems and mine weak rock) - You can now jump out of rolls for a slight jump boost @@ -727,7 +737,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.9.0&to=master +[unreleased]: https://gitlab.com/veloren/veloren/compare?from=v0.10.0&to=master +[0.9.0]: https://gitlab.com/veloren/veloren/compare?from=v0.9.0&to=v0.10.0 [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 diff --git a/Cargo.lock b/Cargo.lock index d6f4c1a325..cff916f047 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -5747,7 +5747,7 @@ dependencies = [ [[package]] name = "veloren-client" -version = "0.9.0" +version = "0.10.0" dependencies = [ "async-channel", "authc", @@ -5779,7 +5779,7 @@ dependencies = [ [[package]] name = "veloren-common" -version = "0.9.0" +version = "0.10.0" dependencies = [ "approx 0.4.0", "bitflags", @@ -5821,7 +5821,7 @@ dependencies = [ [[package]] name = "veloren-common-assets" -version = "0.9.0" +version = "0.10.0" dependencies = [ "assets_manager", "dot_vox", @@ -5835,7 +5835,7 @@ dependencies = [ [[package]] name = "veloren-common-base" -version = "0.9.0" +version = "0.10.0" dependencies = [ "directories-next", "tracing", @@ -5844,7 +5844,7 @@ dependencies = [ [[package]] name = "veloren-common-ecs" -version = "0.9.0" +version = "0.10.0" dependencies = [ "float-cmp", "specs", @@ -5854,7 +5854,7 @@ dependencies = [ [[package]] name = "veloren-common-frontend" -version = "0.9.0" +version = "0.10.0" dependencies = [ "termcolor", "tracing", @@ -5867,7 +5867,7 @@ dependencies = [ [[package]] name = "veloren-common-net" -version = "0.9.0" +version = "0.10.0" dependencies = [ "bincode", "flate2", @@ -5885,7 +5885,7 @@ dependencies = [ [[package]] name = "veloren-common-state" -version = "0.9.0" +version = "0.10.0" dependencies = [ "bincode", "hashbrown 0.11.2", @@ -5908,7 +5908,7 @@ dependencies = [ [[package]] name = "veloren-common-systems" -version = "0.9.0" +version = "0.10.0" dependencies = [ "hashbrown 0.11.2", "indexmap", @@ -5927,7 +5927,7 @@ dependencies = [ [[package]] name = "veloren-i18n" -version = "0.9.0" +version = "0.10.0" dependencies = [ "clap", "deunicode", @@ -6016,7 +6016,7 @@ dependencies = [ [[package]] name = "veloren-server" -version = "0.9.0" +version = "0.10.0" dependencies = [ "atomicwrites", "authc", @@ -6060,7 +6060,7 @@ dependencies = [ [[package]] name = "veloren-server-cli" -version = "0.9.0" +version = "0.10.0" dependencies = [ "ansi-parser", "clap", @@ -6084,7 +6084,7 @@ dependencies = [ [[package]] name = "veloren-voxygen" -version = "0.9.0" +version = "0.10.0" dependencies = [ "backtrace", "bincode", @@ -6154,7 +6154,7 @@ dependencies = [ [[package]] name = "veloren-voxygen-anim" -version = "0.9.0" +version = "0.10.0" dependencies = [ "bytemuck", "find_folder", @@ -6168,14 +6168,14 @@ dependencies = [ [[package]] name = "veloren-voxygen-anim-dyn" -version = "0.9.0" +version = "0.10.0" dependencies = [ "veloren-voxygen-anim", ] [[package]] name = "veloren-world" -version = "0.9.0" +version = "0.10.0" dependencies = [ "arr_macro", "assets_manager", diff --git a/client/Cargo.toml b/client/Cargo.toml index e878fec0b0..449b18ba21 100644 --- a/client/Cargo.toml +++ b/client/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "veloren-client" -version = "0.9.0" +version = "0.10.0" authors = ["Joshua Barretto "] edition = "2018" diff --git a/common/Cargo.toml b/common/Cargo.toml index a34fce597f..ebc46b92bd 100644 --- a/common/Cargo.toml +++ b/common/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "veloren-common" -version = "0.9.0" +version = "0.10.0" authors = ["Joshua Barretto ", "Maciej Ćwięka ", "Imbris "] edition = "2018" diff --git a/common/assets/Cargo.toml b/common/assets/Cargo.toml index f72aa12cea..e4e67aed29 100644 --- a/common/assets/Cargo.toml +++ b/common/assets/Cargo.toml @@ -3,7 +3,7 @@ authors = ["juliancoffee ", "Marcel Märtens "] edition = "2018" name = "veloren-common-base" description = "minimal dependency for crates to now depend on whole common" -version = "0.9.0" +version = "0.10.0" [features] tracy = ["tracy-client"] diff --git a/common/ecs/Cargo.toml b/common/ecs/Cargo.toml index 591a26a3a4..687949a9df 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.9.0" +version = "0.10.0" [features] tracy = ["common-base/tracy"] diff --git a/common/frontend/Cargo.toml b/common/frontend/Cargo.toml index 83c06a72b4..fcde12a404 100644 --- a/common/frontend/Cargo.toml +++ b/common/frontend/Cargo.toml @@ -3,7 +3,7 @@ authors = ["Marcel Märtens ", "Imbris "] edition = "2018" name = "veloren-common-net" -version = "0.9.0" +version = "0.10.0" [features] tracy = ["common/tracy"] diff --git a/common/state/Cargo.toml b/common/state/Cargo.toml index 2df6c875c9..f613bb9a3c 100644 --- a/common/state/Cargo.toml +++ b/common/state/Cargo.toml @@ -2,7 +2,7 @@ authors = ["Marcel Märtens "] edition = "2018" name = "veloren-common-state" -version = "0.9.0" +version = "0.10.0" [features] tracy = ["common/tracy"] diff --git a/common/systems/Cargo.toml b/common/systems/Cargo.toml index 582315e8bb..8f1bacdf86 100644 --- a/common/systems/Cargo.toml +++ b/common/systems/Cargo.toml @@ -2,7 +2,7 @@ authors = ["Marcel Märtens "] edition = "2018" name = "veloren-common-systems" -version = "0.9.0" +version = "0.10.0" [features] tracy = ["common/tracy"] diff --git a/server-cli/Cargo.toml b/server-cli/Cargo.toml index 5efc0363c6..193fe74446 100644 --- a/server-cli/Cargo.toml +++ b/server-cli/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "veloren-server-cli" -version = "0.9.0" +version = "0.10.0" authors = ["Joshua Barretto "] edition = "2018" diff --git a/server/Cargo.toml b/server/Cargo.toml index c7715758b5..455a38147e 100644 --- a/server/Cargo.toml +++ b/server/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "veloren-server" -version = "0.9.0" +version = "0.10.0" authors = ["Joshua Barretto "] edition = "2018" diff --git a/voxygen/Cargo.toml b/voxygen/Cargo.toml index 85b21bfccb..b84a19dcb5 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.9.0" +version = "0.10.0" [features] use-dyn-lib = ["libloading", "notify", "lazy_static", "tracing", "find_folder"] diff --git a/voxygen/anim/dyn/Cargo.toml b/voxygen/anim/dyn/Cargo.toml index becc2a2697..6bf01bc546 100644 --- a/voxygen/anim/dyn/Cargo.toml +++ b/voxygen/anim/dyn/Cargo.toml @@ -2,7 +2,7 @@ authors = ["Imbris "] edition = "2018" name = "veloren-voxygen-anim-dyn" -version = "0.9.0" +version = "0.10.0" [lib] # Using dylib instead of cdylib increases the size 3 -> 13 mb diff --git a/voxygen/i18n/Cargo.toml b/voxygen/i18n/Cargo.toml index 5580c453df..0d7ee94b70 100644 --- a/voxygen/i18n/Cargo.toml +++ b/voxygen/i18n/Cargo.toml @@ -3,7 +3,7 @@ authors = ["juliancoffee ", "Rémy Phelipot"] edition = "2018" name = "veloren-i18n" description = "Crate for internalization and diagnostic of existing localizations." -version = "0.9.0" +version = "0.10.0" [[bin]] name = "i18n-check" diff --git a/world/Cargo.toml b/world/Cargo.toml index 3451fc6c5c..07b4084e78 100644 --- a/world/Cargo.toml +++ b/world/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "veloren-world" -version = "0.9.0" +version = "0.10.0" authors = ["Joshua Barretto "] edition = "2018"