Merge branch 'xMAC94x/release-numbers' into 'master'

Change the version number to 0.14

See merge request veloren/veloren!3748
This commit is contained in:
Marcel 2023-01-06 18:27:46 +00:00
commit 185dccc1cc
6 changed files with 20 additions and 9 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.14.0] - 2022-01-07
### Added
- Setting for disabling flashing lights - Setting for disabling flashing lights
- Spectate mode for moderators. - Spectate mode for moderators.
- Currently playing music track and artist now shows in the debug menu. - Currently playing music track and artist now shows in the debug menu.
@ -1074,7 +1084,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.13.0&to=master [unreleased]: https://gitlab.com/veloren/veloren/compare?from=v0.14.0&to=master
[0.14.0]: https://gitlab.com/veloren/veloren/compare?from=v0.13.0&to=v0.14.0
[0.13.0]: https://gitlab.com/veloren/veloren/compare?from=v0.12.0&to=v0.13.0 [0.13.0]: https://gitlab.com/veloren/veloren/compare?from=v0.12.0&to=v0.13.0
[0.12.0]: https://gitlab.com/veloren/veloren/compare?from=v0.11.0&to=v0.12.0 [0.12.0]: https://gitlab.com/veloren/veloren/compare?from=v0.11.0&to=v0.12.0
[0.11.0]: https://gitlab.com/veloren/veloren/compare?from=v0.10.0&to=v0.11.0 [0.11.0]: https://gitlab.com/veloren/veloren/compare?from=v0.10.0&to=v0.11.0

8
Cargo.lock generated
View File

@ -6644,7 +6644,7 @@ dependencies = [
[[package]] [[package]]
name = "veloren-client" name = "veloren-client"
version = "0.13.0" version = "0.14.0"
dependencies = [ dependencies = [
"async-channel", "async-channel",
"authc", "authc",
@ -6937,7 +6937,7 @@ dependencies = [
[[package]] [[package]]
name = "veloren-server" name = "veloren-server"
version = "0.13.0" version = "0.14.0"
dependencies = [ dependencies = [
"atomicwrites", "atomicwrites",
"authc", "authc",
@ -7007,7 +7007,7 @@ dependencies = [
[[package]] [[package]]
name = "veloren-server-cli" name = "veloren-server-cli"
version = "0.13.0" version = "0.14.0"
dependencies = [ dependencies = [
"ansi-parser", "ansi-parser",
"clap 3.2.22", "clap 3.2.22",
@ -7031,7 +7031,7 @@ dependencies = [
[[package]] [[package]]
name = "veloren-voxygen" name = "veloren-voxygen"
version = "0.13.0" version = "0.14.0"
dependencies = [ dependencies = [
"assets_manager", "assets_manager",
"backtrace", "backtrace",

View File

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

View File

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

View File

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

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 = "2021" edition = "2021"
name = "veloren-voxygen" name = "veloren-voxygen"
version = "0.13.0" version = "0.14.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