Change the version number to 0.8

This commit is contained in:
Marcel Märtens 2020-11-28 11:25:58 +01:00
parent 9065d0ca02
commit ca1601a980
10 changed files with 29 additions and 17 deletions

View File

@ -8,6 +8,17 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
## [Unreleased] ## [Unreleased]
### Added ### Added
### Changed
### Removed
### Fixed
## [0.8.0] - 2020-11-28
### Added
- New level of detail feature, letting you see all the world's terrain at any view distance. - New level of detail feature, letting you see all the world's terrain at any view distance.
- Point and directional lights now cast realistic shadows, using shadow mapping. - Point and directional lights now cast realistic shadows, using shadow mapping.
- Added leaf and chimney particles - Added leaf and chimney particles
@ -464,7 +475,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.7.0&to=master [unreleased]: https://gitlab.com/veloren/veloren/compare?from=v0.8.0&to=master
[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
[0.5.0]: https://gitlab.com/veloren/veloren/compare?from=v0.4.0&to=v0.5.0 [0.5.0]: https://gitlab.com/veloren/veloren/compare?from=v0.4.0&to=v0.5.0

16
Cargo.lock generated
View File

@ -5314,7 +5314,7 @@ dependencies = [
[[package]] [[package]]
name = "veloren-chat-cli" name = "veloren-chat-cli"
version = "0.7.0" version = "0.8.0"
dependencies = [ dependencies = [
"tracing", "tracing",
"tracing-subscriber", "tracing-subscriber",
@ -5324,7 +5324,7 @@ dependencies = [
[[package]] [[package]]
name = "veloren-client" name = "veloren-client"
version = "0.7.0" version = "0.8.0"
dependencies = [ dependencies = [
"authc", "authc",
"byteorder", "byteorder",
@ -5346,7 +5346,7 @@ dependencies = [
[[package]] [[package]]
name = "veloren-common" name = "veloren-common"
version = "0.7.0" version = "0.8.0"
dependencies = [ dependencies = [
"arraygen", "arraygen",
"authc", "authc",
@ -5383,7 +5383,7 @@ dependencies = [
[[package]] [[package]]
name = "veloren-server" name = "veloren-server"
version = "0.7.0" version = "0.8.0"
dependencies = [ dependencies = [
"authc", "authc",
"chrono", "chrono",
@ -5420,7 +5420,7 @@ dependencies = [
[[package]] [[package]]
name = "veloren-server-cli" name = "veloren-server-cli"
version = "0.7.0" version = "0.8.0"
dependencies = [ dependencies = [
"ansi-parser", "ansi-parser",
"clap", "clap",
@ -5439,7 +5439,7 @@ dependencies = [
[[package]] [[package]]
name = "veloren-voxygen" name = "veloren-voxygen"
version = "0.7.0" version = "0.8.0"
dependencies = [ dependencies = [
"backtrace", "backtrace",
"bincode", "bincode",
@ -5503,7 +5503,7 @@ dependencies = [
[[package]] [[package]]
name = "veloren-voxygen-anim" name = "veloren-voxygen-anim"
version = "0.7.0" version = "0.8.0"
dependencies = [ dependencies = [
"find_folder", "find_folder",
"inline_tweak", "inline_tweak",
@ -5517,7 +5517,7 @@ dependencies = [
[[package]] [[package]]
name = "veloren-world" name = "veloren-world"
version = "0.7.0" version = "0.8.0"
dependencies = [ dependencies = [
"arr_macro", "arr_macro",
"bincode", "bincode",

View File

@ -1,6 +1,6 @@
[package] [package]
name = "veloren-chat-cli" name = "veloren-chat-cli"
version = "0.7.0" version = "0.8.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-client" name = "veloren-client"
version = "0.7.0" version = "0.8.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.7.0" version = "0.8.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

@ -1,6 +1,6 @@
[package] [package]
name = "veloren-server-cli" name = "veloren-server-cli"
version = "0.7.0" version = "0.8.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.7.0" version = "0.8.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.7.0" version = "0.8.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.7.0" version = "0.8.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.7.0" version = "0.8.0"
authors = ["Joshua Barretto <joshua.s.barretto@gmail.com>"] authors = ["Joshua Barretto <joshua.s.barretto@gmail.com>"]
edition = "2018" edition = "2018"