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

Change the version number to 0.12

See merge request veloren/veloren!3219
This commit is contained in:
Marcel 2022-02-18 23:41:06 +00:00
commit b5bac97c2e
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
### Changed
### Removed
### Fixed
## [0.12.0] - 2022-02-19
### Added
- Added a setting to always show health and energy bars
- Added a crafting station icon to the crafting menu sidebar for items that could be crafted at a crafting station
- Added a setting to disable the hotkey hints
@ -907,7 +917,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.11.0&to=master
[unreleased]: https://gitlab.com/veloren/veloren/compare?from=v0.12.0&to=master
[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.10.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

8
Cargo.lock generated
View File

@ -6165,7 +6165,7 @@ dependencies = [
[[package]]
name = "veloren-client"
version = "0.11.0"
version = "0.12.0"
dependencies = [
"async-channel",
"authc",
@ -6428,7 +6428,7 @@ dependencies = [
[[package]]
name = "veloren-server"
version = "0.11.0"
version = "0.12.0"
dependencies = [
"atomicwrites",
"authc",
@ -6476,7 +6476,7 @@ dependencies = [
[[package]]
name = "veloren-server-cli"
version = "0.11.0"
version = "0.12.0"
dependencies = [
"ansi-parser",
"clap",
@ -6500,7 +6500,7 @@ dependencies = [
[[package]]
name = "veloren-voxygen"
version = "0.11.0"
version = "0.12.0"
dependencies = [
"assets_manager",
"backtrace",

View File

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

View File

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

View File

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

View File

@ -3,7 +3,7 @@ authors = ["Joshua Barretto <joshua.s.barretto@gmail.com>", "Imbris <imbrisf@gma
default-run = "veloren-voxygen"
edition = "2021"
name = "veloren-voxygen"
version = "0.11.0"
version = "0.12.0"
# 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
# autobins = false