Change the version number to 0.10

This commit is contained in:
Marcel Märtens 2021-06-12 10:14:07 +02:00
parent f578c56db7
commit 4167621f5d
18 changed files with 44 additions and 33 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.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

32
Cargo.lock generated
View File

@ -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",

View File

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

View File

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

View File

@ -3,7 +3,7 @@ authors = ["juliancoffee <lightdarkdaughter@gmail.com>", "Marcel Märtens <marce
edition = "2018"
name = "veloren-common-assets"
description = "Crate for game loading assets for veloren."
version = "0.9.0"
version = "0.10.0"
[dependencies]
lazy_static = "1.4.0"

View File

@ -3,7 +3,7 @@ authors = ["Marcel Märtens <marcel.cochem@googlemail.com>"]
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"]

View File

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

View File

@ -3,7 +3,7 @@ authors = ["Marcel Märtens <marcel.cochem@googlemail.com>", "Imbris <imbrisf@gm
edition = "2018"
name = "veloren-common-frontend"
description = "common stuff that is used by server-cli and voxygen directly"
version = "0.9.0"
version = "0.10.0"
[features]
tracy = ["common-base/tracy", "tracing-tracy"]

View File

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

View File

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

View File

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

View File

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

View File

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

View File

@ -3,7 +3,7 @@ authors = ["Joshua Barretto <joshua.s.barretto@gmail.com>", "Imbris <imbrisf@gma
default-run = "veloren-voxygen"
edition = "2018"
name = "veloren-voxygen"
version = "0.9.0"
version = "0.10.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

View File

@ -2,7 +2,7 @@
authors = ["Joshua Barretto <joshua.s.barretto@gmail.com>", "Imbris <imbrisf@gmail.com>"]
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"]

View File

@ -2,7 +2,7 @@
authors = ["Imbris <imbrisf@gmail.com>"]
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

View File

@ -3,7 +3,7 @@ authors = ["juliancoffee <lightdarkdaughter@gmail.com>", "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"

View File

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