Skip to content
This repository has been archived by the owner on Nov 13, 2023. It is now read-only.

Commit

Permalink
bump core and storage to 0.4.2
Browse files Browse the repository at this point in the history
  • Loading branch information
bonsairobo committed Dec 17, 2020
1 parent c3b7e66 commit ed9ba3f
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
6 changes: 3 additions & 3 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "building-blocks"
version = "0.4.1"
version = "0.4.2"
edition = "2018"
authors = ["Duncan <[email protected]>"]
description = "Data types, collections, and algorithms for working with maps on 2D and 3D integer lattices. Commonly known as voxel data."
Expand Down Expand Up @@ -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 }
Expand Down
2 changes: 1 addition & 1 deletion crates/building_blocks_core/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "building_blocks_core"
version = "0.4.1"
version = "0.4.2"
edition = "2018"
authors = ["Duncan <[email protected]>"]
license = "MIT"
Expand Down
4 changes: 2 additions & 2 deletions crates/building_blocks_storage/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "building_blocks_storage"
version = "0.4.1"
version = "0.4.2"
edition = "2018"
authors = ["Duncan <[email protected]>"]
license = "MIT"
Expand All @@ -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 }
Expand Down

0 comments on commit ed9ba3f

Please sign in to comment.