From 5a397a4f86809d6115aa3365b010a7ebb709d0c1 Mon Sep 17 00:00:00 2001 From: caelunshun Date: Tue, 3 Sep 2019 19:18:35 -0600 Subject: [PATCH] Release v0.4.1 --- Cargo.lock | 32 ++++++++++++++++---------------- blocks/Cargo.toml | 2 +- codegen/Cargo.toml | 2 +- core/Cargo.toml | 2 +- generator/Cargo.toml | 2 +- item_block/Cargo.toml | 2 +- items/Cargo.toml | 2 +- server/Cargo.toml | 2 +- 8 files changed, 23 insertions(+), 23 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index cd18cd5aa..5cb013a59 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -557,12 +557,12 @@ dependencies = [ [[package]] name = "feather-blocks" -version = "0.4.0" +version = "0.4.1" dependencies = [ "byteorder 1.3.2 (registry+https://github.com/rust-lang/crates.io-index)", "criterion 0.3.0 (registry+https://github.com/rust-lang/crates.io-index)", "failure 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)", - "feather-codegen 0.4.0", + "feather-codegen 0.4.1", "lazy_static 1.4.0 (registry+https://github.com/rust-lang/crates.io-index)", "num-derive 0.2.5 (registry+https://github.com/rust-lang/crates.io-index)", "num-traits 0.2.8 (registry+https://github.com/rust-lang/crates.io-index)", @@ -570,7 +570,7 @@ dependencies = [ [[package]] name = "feather-codegen" -version = "0.4.0" +version = "0.4.1" dependencies = [ "heck 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)", "lazy_static 1.4.0 (registry+https://github.com/rust-lang/crates.io-index)", @@ -583,7 +583,7 @@ dependencies = [ [[package]] name = "feather-core" -version = "0.4.0" +version = "0.4.1" dependencies = [ "aes 0.3.2 (registry+https://github.com/rust-lang/crates.io-index)", "byteorder 1.3.2 (registry+https://github.com/rust-lang/crates.io-index)", @@ -591,9 +591,9 @@ dependencies = [ "cfb8 0.3.2 (registry+https://github.com/rust-lang/crates.io-index)", "derive-new 0.5.8 (registry+https://github.com/rust-lang/crates.io-index)", "derive_more 0.15.0 (registry+https://github.com/rust-lang/crates.io-index)", - "feather-blocks 0.4.0", - "feather-codegen 0.4.0", - "feather-items 0.4.0", + "feather-blocks 0.4.1", + "feather-codegen 0.4.1", + "feather-items 0.4.1", "flate2 1.0.11 (registry+https://github.com/rust-lang/crates.io-index)", "hash32 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)", "hash32-derive 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)", @@ -611,7 +611,7 @@ dependencies = [ [[package]] name = "feather-generator" -version = "0.4.0" +version = "0.4.1" dependencies = [ "byteorder 1.3.2 (registry+https://github.com/rust-lang/crates.io-index)", "clap 2.33.0 (registry+https://github.com/rust-lang/crates.io-index)", @@ -630,15 +630,15 @@ dependencies = [ [[package]] name = "feather-item-block" -version = "0.4.0" +version = "0.4.1" dependencies = [ - "feather-blocks 0.4.0", - "feather-items 0.4.0", + "feather-blocks 0.4.1", + "feather-items 0.4.1", ] [[package]] name = "feather-items" -version = "0.4.0" +version = "0.4.1" dependencies = [ "num-derive 0.2.5 (registry+https://github.com/rust-lang/crates.io-index)", "num-traits 0.2.8 (registry+https://github.com/rust-lang/crates.io-index)", @@ -646,7 +646,7 @@ dependencies = [ [[package]] name = "feather-server" -version = "0.4.0" +version = "0.4.1" dependencies = [ "backtrace 0.3.35 (registry+https://github.com/rust-lang/crates.io-index)", "base64 0.10.1 (registry+https://github.com/rust-lang/crates.io-index)", @@ -657,9 +657,9 @@ dependencies = [ "derive-new 0.5.8 (registry+https://github.com/rust-lang/crates.io-index)", "derive_deref 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)", "failure 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)", - "feather-codegen 0.4.0", - "feather-core 0.4.0", - "feather-item-block 0.4.0", + "feather-codegen 0.4.1", + "feather-core 0.4.1", + "feather-item-block 0.4.1", "fnv 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", "hashbrown 0.6.0 (registry+https://github.com/rust-lang/crates.io-index)", "heapless 0.5.1 (registry+https://github.com/rust-lang/crates.io-index)", diff --git a/blocks/Cargo.toml b/blocks/Cargo.toml index 0f03e7c80..502308bc4 100644 --- a/blocks/Cargo.toml +++ b/blocks/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "feather-blocks" -version = "0.4.0" +version = "0.4.1" authors = ["caelunshun "] edition = "2018" diff --git a/codegen/Cargo.toml b/codegen/Cargo.toml index 0fd037d68..18162fe39 100644 --- a/codegen/Cargo.toml +++ b/codegen/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "feather-codegen" -version = "0.4.0" +version = "0.4.1" authors = ["caelunshun "] edition = "2018" diff --git a/core/Cargo.toml b/core/Cargo.toml index 99fc02cf5..836f7f8eb 100644 --- a/core/Cargo.toml +++ b/core/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "feather-core" -version = "0.4.0" +version = "0.4.1" authors = ["caelunshun "] edition = "2018" publish = false diff --git a/generator/Cargo.toml b/generator/Cargo.toml index 15bb3ae62..b797d6388 100644 --- a/generator/Cargo.toml +++ b/generator/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "feather-generator" -version = "0.4.0" +version = "0.4.1" authors = ["caelunshun "] edition = "2018" description = "Code generators for Feather" diff --git a/item_block/Cargo.toml b/item_block/Cargo.toml index 180c80c8d..b26afefc2 100644 --- a/item_block/Cargo.toml +++ b/item_block/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "feather-item-block" -version = "0.4.0" +version = "0.4.1" authors = ["caelunshun "] edition = "2018" diff --git a/items/Cargo.toml b/items/Cargo.toml index 392650400..9282ac190 100644 --- a/items/Cargo.toml +++ b/items/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "feather-items" -version = "0.4.0" +version = "0.4.1" authors = ["caelunshun "] edition = "2018" diff --git a/server/Cargo.toml b/server/Cargo.toml index 68769070e..d37e35e29 100644 --- a/server/Cargo.toml +++ b/server/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "feather-server" -version = "0.4.0" +version = "0.4.1" authors = ["caelunshun "] edition = "2018"