mirror of
https://gitlab.com/veloren/veloren.git
synced 2024-08-30 18:12:32 +00:00
Change the version number to 0.13
This commit is contained in:
parent
72b0b26004
commit
bfcc2cb802
13
CHANGELOG.md
13
CHANGELOG.md
@ -7,6 +7,16 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
||||
|
||||
## [Unreleased]
|
||||
|
||||
### Added
|
||||
|
||||
### Changed
|
||||
|
||||
### Removed
|
||||
|
||||
### Fixed
|
||||
|
||||
## [0.13.0] - 2022-07-23
|
||||
|
||||
### Added
|
||||
- Chat commands to mute and unmute players
|
||||
- Waypoints saved between sessions and shared with group members.
|
||||
@ -992,7 +1002,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.12.0&to=master
|
||||
[unreleased]: https://gitlab.com/veloren/veloren/compare?from=v0.13.0&to=master
|
||||
[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.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
|
||||
|
8
Cargo.lock
generated
8
Cargo.lock
generated
@ -6390,7 +6390,7 @@ dependencies = [
|
||||
|
||||
[[package]]
|
||||
name = "veloren-client"
|
||||
version = "0.12.0"
|
||||
version = "0.13.0"
|
||||
dependencies = [
|
||||
"async-channel",
|
||||
"authc",
|
||||
@ -6654,7 +6654,7 @@ dependencies = [
|
||||
|
||||
[[package]]
|
||||
name = "veloren-server"
|
||||
version = "0.12.0"
|
||||
version = "0.13.0"
|
||||
dependencies = [
|
||||
"atomicwrites",
|
||||
"authc",
|
||||
@ -6704,7 +6704,7 @@ dependencies = [
|
||||
|
||||
[[package]]
|
||||
name = "veloren-server-cli"
|
||||
version = "0.12.0"
|
||||
version = "0.13.0"
|
||||
dependencies = [
|
||||
"ansi-parser",
|
||||
"clap 3.1.10",
|
||||
@ -6728,7 +6728,7 @@ dependencies = [
|
||||
|
||||
[[package]]
|
||||
name = "veloren-voxygen"
|
||||
version = "0.12.0"
|
||||
version = "0.13.0"
|
||||
dependencies = [
|
||||
"assets_manager",
|
||||
"backtrace",
|
||||
|
@ -1,6 +1,6 @@
|
||||
[package]
|
||||
name = "veloren-client"
|
||||
version = "0.12.0"
|
||||
version = "0.13.0"
|
||||
authors = ["Joshua Barretto <joshua.s.barretto@gmail.com>"]
|
||||
edition = "2021"
|
||||
|
||||
|
@ -1,6 +1,6 @@
|
||||
[package]
|
||||
name = "veloren-server-cli"
|
||||
version = "0.12.0"
|
||||
version = "0.13.0"
|
||||
authors = ["Joshua Barretto <joshua.s.barretto@gmail.com>"]
|
||||
edition = "2021"
|
||||
|
||||
|
@ -1,6 +1,6 @@
|
||||
[package]
|
||||
name = "veloren-server"
|
||||
version = "0.12.0"
|
||||
version = "0.13.0"
|
||||
authors = ["Joshua Barretto <joshua.s.barretto@gmail.com>"]
|
||||
edition = "2021"
|
||||
|
||||
|
@ -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.12.0"
|
||||
version = "0.13.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
|
||||
|
Loading…
Reference in New Issue
Block a user