From f77f01190e9b763aa6cd04cf05049174294ca3d4 Mon Sep 17 00:00:00 2001 From: Yeastplume Date: Wed, 19 Feb 2020 16:47:48 +0000 Subject: [PATCH] Set version for first release --- Cargo.lock | 20 ++++++++++---------- Cargo.toml | 8 ++++---- README.md | 2 +- proj/Cargo.toml | 6 +++--- util/Cargo.toml | 2 +- vera/Cargo.toml | 4 ++-- 6 files changed, 21 insertions(+), 21 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index a009960..848d1a4 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -7,11 +7,11 @@ source = "registry+https://github.com/rust-lang/crates.io-index" [[package]] name = "aloevera" -version = "0.0.1-alpha.1" +version = "0.1.0" dependencies = [ - "aloevera_proj 0.0.1-alpha.1", - "aloevera_util 0.0.1-alpha.1", - "aloevera_vera 0.0.1-alpha.1", + "aloevera_proj 0.1.0", + "aloevera_util 0.1.0", + "aloevera_vera 0.1.0", "built 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)", "clap 2.33.0 (registry+https://github.com/rust-lang/crates.io-index)", "failure 0.1.6 (registry+https://github.com/rust-lang/crates.io-index)", @@ -21,10 +21,10 @@ dependencies = [ [[package]] name = "aloevera_proj" -version = "0.0.1-alpha.1" +version = "0.1.0" dependencies = [ - "aloevera_util 0.0.1-alpha.1", - "aloevera_vera 0.0.1-alpha.1", + "aloevera_util 0.1.0", + "aloevera_vera 0.1.0", "backtrace 0.3.43 (registry+https://github.com/rust-lang/crates.io-index)", "failure 0.1.6 (registry+https://github.com/rust-lang/crates.io-index)", "failure_derive 0.1.6 (registry+https://github.com/rust-lang/crates.io-index)", @@ -38,7 +38,7 @@ dependencies = [ [[package]] name = "aloevera_util" -version = "0.0.1-alpha.1" +version = "0.1.0" dependencies = [ "backtrace 0.3.43 (registry+https://github.com/rust-lang/crates.io-index)", "lazy_static 1.4.0 (registry+https://github.com/rust-lang/crates.io-index)", @@ -54,9 +54,9 @@ dependencies = [ [[package]] name = "aloevera_vera" -version = "0.0.1-alpha.1" +version = "0.1.0" dependencies = [ - "aloevera_util 0.0.1-alpha.1", + "aloevera_util 0.1.0", "failure 0.1.6 (registry+https://github.com/rust-lang/crates.io-index)", "failure_derive 0.1.6 (registry+https://github.com/rust-lang/crates.io-index)", "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", diff --git a/Cargo.toml b/Cargo.toml index 1d40a82..ab3f5a6 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "aloevera" -version = "0.0.1-alpha.1" +version = "0.1.0" authors = ["Revcore Technologies Ltd."] description = "Graphics Asset Pipeline for the Commander X16" license = "Apache-2.0" @@ -25,6 +25,6 @@ log = "0.4" failure = "0.1" failure_derive = "0.1" -aloevera_util = { path = "./util", version = "0.0.1-alpha.1" } -aloevera_proj = { path = "./proj", version = "0.0.1-alpha.1" } -aloevera_vera = { path = "./vera", version = "0.0.1-alpha.1" } +aloevera_util = { path = "./util", version = "0.1.0" } +aloevera_proj = { path = "./proj", version = "0.1.0" } +aloevera_vera = { path = "./vera", version = "0.1.0" } diff --git a/README.md b/README.md index 7bb1f19..dcc4d98 100644 --- a/README.md +++ b/README.md @@ -50,7 +50,7 @@ in the project directory. Aloevera is a project put together over a few elapsed months in a very hobbyist capacity, and I'd expect that most development for the X16 will be purely spare-time stuff. Even so, it's hoped that other members of the X16 community will chip in as and when they can to help improve Aloevera and make it the best tool it can possibly be. Contributions and feedback are welcome and encouraged. -If you're looking for a place to contribute, the [issues](./issues) page should contain quite a few pointers as to where to start. Or if there's a feature you think should be included that isn't, feel free to open an issue or PR yourself. +If you're looking for a place to contribute, the [issues](https://github.com/yeastplume/aloevera/issues) page should contain quite a few pointers as to where to start. Or if there's a feature you think should be included that isn't, feel free to open an issue or PR yourself. # Who am I? diff --git a/proj/Cargo.toml b/proj/Cargo.toml index 540bb1f..257b972 100644 --- a/proj/Cargo.toml +++ b/proj/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "aloevera_proj" -version = "0.0.1-alpha.1" +version = "0.1.0" authors = ["Revcore Technologies Ltd."] description = "Aloevera project file definitions" license = "Apache-2.0" @@ -19,5 +19,5 @@ log = "0.4" failure = "0.1" failure_derive = "0.1" -aloevera_util = { path = "../util", version = "0.0.1-alpha.1" } -aloevera_vera = { path = "../vera", version = "0.0.1-alpha.1" } +aloevera_util = { path = "../util", version = "0.1.0" } +aloevera_vera = { path = "../vera", version = "0.1.0" } diff --git a/util/Cargo.toml b/util/Cargo.toml index 6d9091a..373852d 100644 --- a/util/Cargo.toml +++ b/util/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "aloevera_util" -version = "0.0.1-alpha.1" +version = "0.1.0" authors = ["Revcore Technologies Ltd."] description = "Aloevera utils crate." license = "Apache-2.0" diff --git a/vera/Cargo.toml b/vera/Cargo.toml index dd369ff..8db319f 100644 --- a/vera/Cargo.toml +++ b/vera/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "aloevera_vera" -version = "0.0.1-alpha.1" +version = "0.1.0" authors = ["Revcore Technologies Ltd."] description = "Aloevera VERA operations" license = "Apache-2.0" @@ -18,4 +18,4 @@ serde_derive = "1" png = "0.15" permutate = "0.3" -aloevera_util = { path = "../util", version = "0.0.1-alpha.1" } +aloevera_util = { path = "../util", version = "0.1.0" }