Skip to content

Commit

Permalink
Bump to version 0.5.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Pascal committed Jun 20, 2024
1 parent edadc23 commit 1b0b39c
Show file tree
Hide file tree
Showing 6 changed files with 22 additions and 14 deletions.
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,11 @@
# 0.5.0

- Allows creating point and attribute views on trait objects, i.e. `dyn BorrowedBuffer` and the likes
- `serde` is now an optional dependency in `pasture-core`
- Fixed some bugs with LAS reading/writing
- The `LargeFile` header entry is now only set for LAS files that actually support it, i.e. LAS files with version 1.4
- Compressed LAZ files now correctly write the LAZ compression bit into the point format

# 0.4.0

- Major overhaul of the buffer API in `pasture-core`. This is a breaking change for previous `pasture` versions
Expand Down
6 changes: 3 additions & 3 deletions pasture-algorithms/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "pasture-algorithms"
version = "0.4.0"
version = "0.5.0"
authors = ["Pascal Bormann <[email protected]>"]
edition = "2018"
license-file = "LICENSE"
Expand All @@ -12,8 +12,8 @@ categories = ["data-structures", "algorithms"]
readme = "README.md"

[dependencies]
pasture-core = { version = "=0.4.0", path = "../pasture-core" }
pasture-derive = { version = "=0.4.0", path = "../pasture-derive" }
pasture-core = { version = "=0.5.0", path = "../pasture-core" }
pasture-derive = { version = "=0.5.0", path = "../pasture-derive" }
anyhow = "1.0.34"
rand = "0.8.3"
rayon = "1.5"
Expand Down
4 changes: 2 additions & 2 deletions pasture-core/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "pasture-core"
version = "0.4.0"
version = "0.5.0"
authors = ["Pascal Bormann <[email protected]>"]
edition = "2018"
license-file = "LICENSE"
Expand All @@ -12,7 +12,7 @@ categories = ["data-structures"]
readme = "README.md"

[dependencies]
pasture-derive = {version = "=0.4.0", path = "../pasture-derive" }
pasture-derive = {version = "=0.5.0", path = "../pasture-derive" }
nalgebra = {version = "0.32", features = ["convert-bytemuck"] }
anyhow = "1.0.34"
float-ord = "0.2.0"
Expand Down
2 changes: 1 addition & 1 deletion pasture-derive/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "pasture-derive"
version = "0.4.0"
version = "0.5.0"
authors = ["Pascal Bormann <[email protected]>"]
edition = "2018"
license-file = "LICENSE"
Expand Down
6 changes: 3 additions & 3 deletions pasture-io/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "pasture-io"
version = "0.4.0"
version = "0.5.0"
authors = ["Pascal Bormann <[email protected]>"]
edition = "2018"
license-file = "LICENSE"
Expand All @@ -14,8 +14,8 @@ readme = "README.md"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[dependencies]
pasture-core = {version = "=0.4.0", path = "../pasture-core" }
pasture-derive = {version = "=0.4.0", path = "../pasture-derive"}
pasture-core = {version = "=0.5.0", path = "../pasture-core" }
pasture-derive = {version = "=0.5.0", path = "../pasture-derive"}
anyhow = "1.0.34"
las = { version = "0.8", features = ["laz"] }
laz = "0.8"
Expand Down
10 changes: 5 additions & 5 deletions pasture-tools/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "pasture-tools"
version = "0.4.0"
version = "0.5.0"
authors = ["Pascal Bormann <[email protected]>"]
edition = "2018"
license-file = "LICENSE"
Expand All @@ -12,10 +12,10 @@ categories = ["data-structures", "command-line-utilities"]
readme = "README.md"

[dependencies]
pasture-core = {version = "=0.4.0", path = "../pasture-core" }
pasture-io = {version = "=0.4.0", path = "../pasture-io" }
pasture-algorithms = {version = "=0.4.0", path = "../pasture-algorithms" }
pasture-derive = {version = "=0.4.0", path = "../pasture-derive" }
pasture-core = {version = "=0.5.0", path = "../pasture-core" }
pasture-io = {version = "=0.5.0", path = "../pasture-io" }
pasture-algorithms = {version = "=0.5.0", path = "../pasture-algorithms" }
pasture-derive = {version = "=0.5.0", path = "../pasture-derive" }
anyhow = "1.0.34"
clap = "2.33.3"
log = "0.4"
Expand Down

0 comments on commit 1b0b39c

Please sign in to comment.