Change the version number to 0.9

This commit is contained in:
Marcel Märtens 2021-03-20 13:07:09 +01:00
parent ac4d753fc9
commit 2733ba2e27
13 changed files with 34 additions and 23 deletions

View File

@ -9,6 +9,16 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
### Added ### Added
### Changed
### Removed
### Fixed
## [0.9.0] - 2021-03-20
### Added
- Plugin can now retrieve data from ECS - Plugin can now retrieve data from ECS
- Added chat commands for inviting, kicking, leaving, and promoting in groups - Added chat commands for inviting, kicking, leaving, and promoting in groups
- Aura system - 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_ _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.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.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 [0.6.0]: https://gitlab.com/veloren/veloren/compare?from=v0.5.0&to=v0.6.0

22
Cargo.lock generated
View File

@ -5525,7 +5525,7 @@ dependencies = [
[[package]] [[package]]
name = "veloren-client" name = "veloren-client"
version = "0.8.0" version = "0.9.0"
dependencies = [ dependencies = [
"async-channel", "async-channel",
"authc", "authc",
@ -5555,7 +5555,7 @@ dependencies = [
[[package]] [[package]]
name = "veloren-common" name = "veloren-common"
version = "0.8.0" version = "0.9.0"
dependencies = [ dependencies = [
"approx 0.4.0", "approx 0.4.0",
"arraygen", "arraygen",
@ -5595,7 +5595,7 @@ dependencies = [
[[package]] [[package]]
name = "veloren-common-base" name = "veloren-common-base"
version = "0.8.0" version = "0.9.0"
dependencies = [ dependencies = [
"directories-next", "directories-next",
"tracing", "tracing",
@ -5604,7 +5604,7 @@ dependencies = [
[[package]] [[package]]
name = "veloren-common-ecs" name = "veloren-common-ecs"
version = "0.8.0" version = "0.9.0"
dependencies = [ dependencies = [
"float-cmp", "float-cmp",
"specs", "specs",
@ -5614,7 +5614,7 @@ dependencies = [
[[package]] [[package]]
name = "veloren-common-net" name = "veloren-common-net"
version = "0.8.0" version = "0.9.0"
dependencies = [ dependencies = [
"authc", "authc",
"hashbrown", "hashbrown",
@ -5629,7 +5629,7 @@ dependencies = [
[[package]] [[package]]
name = "veloren-common-sys" name = "veloren-common-sys"
version = "0.8.0" version = "0.9.0"
dependencies = [ dependencies = [
"bincode", "bincode",
"hashbrown", "hashbrown",
@ -5726,7 +5726,7 @@ dependencies = [
[[package]] [[package]]
name = "veloren-server" name = "veloren-server"
version = "0.8.0" version = "0.9.0"
dependencies = [ dependencies = [
"authc", "authc",
"chrono", "chrono",
@ -5767,7 +5767,7 @@ dependencies = [
[[package]] [[package]]
name = "veloren-server-cli" name = "veloren-server-cli"
version = "0.8.0" version = "0.9.0"
dependencies = [ dependencies = [
"ansi-parser", "ansi-parser",
"clap", "clap",
@ -5790,7 +5790,7 @@ dependencies = [
[[package]] [[package]]
name = "veloren-voxygen" name = "veloren-voxygen"
version = "0.8.0" version = "0.9.0"
dependencies = [ dependencies = [
"backtrace", "backtrace",
"bincode", "bincode",
@ -5860,7 +5860,7 @@ dependencies = [
[[package]] [[package]]
name = "veloren-voxygen-anim" name = "veloren-voxygen-anim"
version = "0.8.0" version = "0.9.0"
dependencies = [ dependencies = [
"find_folder", "find_folder",
"inline_tweak", "inline_tweak",
@ -5874,7 +5874,7 @@ dependencies = [
[[package]] [[package]]
name = "veloren-world" name = "veloren-world"
version = "0.8.0" version = "0.9.0"
dependencies = [ dependencies = [
"arr_macro", "arr_macro",
"assets_manager", "assets_manager",

View File

@ -1,6 +1,6 @@
[package] [package]
name = "veloren-client" name = "veloren-client"
version = "0.8.0" version = "0.9.0"
authors = ["Joshua Barretto <joshua.s.barretto@gmail.com>"] authors = ["Joshua Barretto <joshua.s.barretto@gmail.com>"]
edition = "2018" edition = "2018"

View File

@ -1,6 +1,6 @@
[package] [package]
name = "veloren-common" name = "veloren-common"
version = "0.8.0" version = "0.9.0"
authors = ["Joshua Barretto <joshua.s.barretto@gmail.com>", "Maciej Ćwięka <mckol363@gmail.com>", "Imbris <imbrisf@gmail.com>"] authors = ["Joshua Barretto <joshua.s.barretto@gmail.com>", "Maciej Ćwięka <mckol363@gmail.com>", "Imbris <imbrisf@gmail.com>"]
edition = "2018" edition = "2018"

View File

@ -3,7 +3,7 @@ authors = ["Marcel Märtens <marcel.cochem@googlemail.com>"]
edition = "2018" edition = "2018"
name = "veloren-common-base" name = "veloren-common-base"
description = "minimal dependency for crates to now depend on whole common" description = "minimal dependency for crates to now depend on whole common"
version = "0.8.0" version = "0.9.0"
[features] [features]
tracy = ["tracy-client"] tracy = ["tracy-client"]

View File

@ -2,7 +2,7 @@
authors = ["Marcel Märtens <marcel.cochem@googlemail.com>"] authors = ["Marcel Märtens <marcel.cochem@googlemail.com>"]
edition = "2018" edition = "2018"
name = "veloren-common-ecs" name = "veloren-common-ecs"
version = "0.8.0" version = "0.9.0"
[features] [features]
tracy = ["common-base/tracy"] tracy = ["common-base/tracy"]

View File

@ -2,7 +2,7 @@
authors = ["Marcel Märtens <marcel.cochem@googlemail.com>"] authors = ["Marcel Märtens <marcel.cochem@googlemail.com>"]
edition = "2018" edition = "2018"
name = "veloren-common-net" name = "veloren-common-net"
version = "0.8.0" version = "0.9.0"
[features] [features]
tracy = ["common/tracy"] tracy = ["common/tracy"]

View File

@ -2,7 +2,7 @@
authors = ["Marcel Märtens <marcel.cochem@googlemail.com>"] authors = ["Marcel Märtens <marcel.cochem@googlemail.com>"]
edition = "2018" edition = "2018"
name = "veloren-common-sys" name = "veloren-common-sys"
version = "0.8.0" version = "0.9.0"
[features] [features]
tracy = ["common/tracy"] tracy = ["common/tracy"]

View File

@ -1,6 +1,6 @@
[package] [package]
name = "veloren-server-cli" name = "veloren-server-cli"
version = "0.8.0" version = "0.9.0"
authors = ["Joshua Barretto <joshua.s.barretto@gmail.com>"] authors = ["Joshua Barretto <joshua.s.barretto@gmail.com>"]
edition = "2018" edition = "2018"

View File

@ -1,6 +1,6 @@
[package] [package]
name = "veloren-server" name = "veloren-server"
version = "0.8.0" version = "0.9.0"
authors = ["Joshua Barretto <joshua.s.barretto@gmail.com>"] authors = ["Joshua Barretto <joshua.s.barretto@gmail.com>"]
edition = "2018" edition = "2018"

View File

@ -3,7 +3,7 @@ authors = ["Joshua Barretto <joshua.s.barretto@gmail.com>", "Imbris <imbrisf@gma
default-run = "veloren-voxygen" default-run = "veloren-voxygen"
edition = "2018" edition = "2018"
name = "veloren-voxygen" name = "veloren-voxygen"
version = "0.8.0" version = "0.9.0"
# Cargo thinks it should build the voxygen binary even when a specific bench is specified for building # Cargo thinks it should build the voxygen binary even when a specific bench is specified for building
# Uncomment below and comment out default-run if you want to avoid this # Uncomment below and comment out default-run if you want to avoid this
# autobins = false # autobins = false

View File

@ -2,7 +2,7 @@
authors = ["Joshua Barretto <joshua.s.barretto@gmail.com>", "Imbris <imbrisf@gmail.com>"] authors = ["Joshua Barretto <joshua.s.barretto@gmail.com>", "Imbris <imbrisf@gmail.com>"]
edition = "2018" edition = "2018"
name = "veloren-voxygen-anim" name = "veloren-voxygen-anim"
version = "0.8.0" version = "0.9.0"
[lib] [lib]
name = "voxygen_anim" name = "voxygen_anim"

View File

@ -1,6 +1,6 @@
[package] [package]
name = "veloren-world" name = "veloren-world"
version = "0.8.0" version = "0.9.0"
authors = ["Joshua Barretto <joshua.s.barretto@gmail.com>"] authors = ["Joshua Barretto <joshua.s.barretto@gmail.com>"]
edition = "2018" edition = "2018"