From ed9ba3f7e0fb57ca3b2c65838981ee7ce147a064 Mon Sep 17 00:00:00 2001 From: Duncan Date: Wed, 16 Dec 2020 17:26:01 -0800 Subject: [PATCH] bump core and storage to 0.4.2 --- Cargo.toml | 6 +++--- crates/building_blocks_core/Cargo.toml | 2 +- crates/building_blocks_storage/Cargo.toml | 4 ++-- 3 files changed, 6 insertions(+), 6 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 59b32067..250b8d7d 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "building-blocks" -version = "0.4.1" +version = "0.4.2" edition = "2018" authors = ["Duncan "] description = "Data types, collections, and algorithms for working with maps on 2D and 3D integer lattices. Commonly known as voxel data." @@ -51,8 +51,8 @@ lto = true lto = true [dependencies] -building_blocks_core = { path = "crates/building_blocks_core", version = "0.4", default-features = false } -building_blocks_storage = { path = "crates/building_blocks_storage", version = "0.4", default-features = false } +building_blocks_core = { path = "crates/building_blocks_core", version = "0.4.2", default-features = false } +building_blocks_storage = { path = "crates/building_blocks_storage", version = "0.4.2", default-features = false } # Optional, feature-gated building_blocks_image = { path = "crates/building_blocks_image", version = "0.4", optional = true } diff --git a/crates/building_blocks_core/Cargo.toml b/crates/building_blocks_core/Cargo.toml index 2fbeb72b..41febca8 100644 --- a/crates/building_blocks_core/Cargo.toml +++ b/crates/building_blocks_core/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "building_blocks_core" -version = "0.4.1" +version = "0.4.2" edition = "2018" authors = ["Duncan "] license = "MIT" diff --git a/crates/building_blocks_storage/Cargo.toml b/crates/building_blocks_storage/Cargo.toml index 44a8fad3..57f1729f 100644 --- a/crates/building_blocks_storage/Cargo.toml +++ b/crates/building_blocks_storage/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "building_blocks_storage" -version = "0.4.1" +version = "0.4.2" edition = "2018" authors = ["Duncan "] license = "MIT" @@ -22,7 +22,7 @@ num = "0.3" serde = { version = "1.0", features = ["derive"] } slab = "0.4" -building_blocks_core = { path = "../building_blocks_core", version = "0.4.1", default-features = false } +building_blocks_core = { path = "../building_blocks_core", version = "0.4.2", default-features = false } # Optional, feature-gated. lz4 = { version = "1.23", optional = true }