Change the version number to 0.3

This commit is contained in:
Piotr Korgól 2019-08-01 12:32:14 +02:00
parent 4042496d10
commit d3f2ca69a4
8 changed files with 25 additions and 25 deletions

36
Cargo.lock generated
View File

@ -2879,29 +2879,29 @@ dependencies = [
[[package]]
name = "veloren-chat-cli"
version = "0.2.0"
version = "0.3.0"
dependencies = [
"log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)",
"pretty_env_logger 0.3.0 (registry+https://github.com/rust-lang/crates.io-index)",
"veloren-client 0.2.0",
"veloren-common 0.2.0",
"veloren-client 0.3.0",
"veloren-common 0.3.0",
]
[[package]]
name = "veloren-client"
version = "0.2.0"
version = "0.3.0"
dependencies = [
"log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)",
"num_cpus 1.10.1 (registry+https://github.com/rust-lang/crates.io-index)",
"specs 0.14.3 (registry+https://github.com/rust-lang/crates.io-index)",
"uvth 3.1.1 (registry+https://github.com/rust-lang/crates.io-index)",
"vek 0.9.8 (registry+https://github.com/rust-lang/crates.io-index)",
"veloren-common 0.2.0",
"veloren-common 0.3.0",
]
[[package]]
name = "veloren-common"
version = "0.2.0"
version = "0.3.0"
dependencies = [
"bincode 1.1.4 (registry+https://github.com/rust-lang/crates.io-index)",
"dot_vox 4.0.0 (registry+https://github.com/rust-lang/crates.io-index)",
@ -2926,7 +2926,7 @@ dependencies = [
[[package]]
name = "veloren-server"
version = "0.2.0"
version = "0.3.0"
dependencies = [
"chrono 0.4.7 (registry+https://github.com/rust-lang/crates.io-index)",
"lazy_static 1.3.0 (registry+https://github.com/rust-lang/crates.io-index)",
@ -2939,24 +2939,24 @@ dependencies = [
"specs 0.14.3 (registry+https://github.com/rust-lang/crates.io-index)",
"uvth 3.1.1 (registry+https://github.com/rust-lang/crates.io-index)",
"vek 0.9.8 (registry+https://github.com/rust-lang/crates.io-index)",
"veloren-common 0.2.0",
"veloren-world 0.2.0",
"veloren-common 0.3.0",
"veloren-world 0.3.0",
]
[[package]]
name = "veloren-server-cli"
version = "0.2.0"
version = "0.3.0"
dependencies = [
"heaptrack 0.3.0 (registry+https://github.com/rust-lang/crates.io-index)",
"log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)",
"pretty_env_logger 0.3.0 (registry+https://github.com/rust-lang/crates.io-index)",
"veloren-common 0.2.0",
"veloren-server 0.2.0",
"veloren-common 0.3.0",
"veloren-server 0.3.0",
]
[[package]]
name = "veloren-voxygen"
version = "0.2.0"
version = "0.3.0"
dependencies = [
"backtrace 0.3.33 (registry+https://github.com/rust-lang/crates.io-index)",
"conrod_core 0.63.0 (git+https://gitlab.com/veloren/conrod.git)",
@ -2991,15 +2991,15 @@ dependencies = [
"simplelog 0.6.0 (registry+https://github.com/rust-lang/crates.io-index)",
"specs 0.14.3 (registry+https://github.com/rust-lang/crates.io-index)",
"vek 0.9.8 (registry+https://github.com/rust-lang/crates.io-index)",
"veloren-client 0.2.0",
"veloren-common 0.2.0",
"veloren-server 0.2.0",
"veloren-client 0.3.0",
"veloren-common 0.3.0",
"veloren-server 0.3.0",
"winit 0.19.2 (registry+https://github.com/rust-lang/crates.io-index)",
]
[[package]]
name = "veloren-world"
version = "0.2.0"
version = "0.3.0"
dependencies = [
"fxhash 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)",
"lazy_static 1.3.0 (registry+https://github.com/rust-lang/crates.io-index)",
@ -3008,7 +3008,7 @@ dependencies = [
"rand 0.7.0 (registry+https://github.com/rust-lang/crates.io-index)",
"rand_chacha 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)",
"vek 0.9.8 (registry+https://github.com/rust-lang/crates.io-index)",
"veloren-common 0.2.0",
"veloren-common 0.3.0",
]
[[package]]

View File

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

View File

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

View File

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

View File

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

View File

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

View File

@ -1,6 +1,6 @@
[package]
name = "veloren-voxygen"
version = "0.2.0"
version = "0.3.0"
authors = ["Joshua Barretto <joshua.s.barretto@gmail.com>"]
edition = "2018"
default-run = "veloren-voxygen"

View File

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