Skip to content

Commit

Permalink
Merge pull request #46 from YoloDev/release-plz-2024-11-03T11-42-46Z
Browse files Browse the repository at this point in the history
chore: release
  • Loading branch information
Alxandr authored Nov 3, 2024
2 parents 6d33a7a + 594c0a9 commit 8310013
Show file tree
Hide file tree
Showing 7 changed files with 23 additions and 11 deletions.
6 changes: 3 additions & 3 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 6 additions & 0 deletions crates/aligned-buffer-pool/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,12 @@

All notable changes to this project will be documented in this file.

## [0.1.0](https://github.com/YoloDev/rstml-component/compare/0.0.7..0.1.0) - 2024-11-03

### ✨ Features

- Better constructors - ([6f0a917](https://github.com/YoloDev/rstml-component/commit/6f0a9175d1e307b3f61a9641d071560ead07edd5))

## [0.0.7](https://github.com/YoloDev/rstml-component/compare/0.0.6..0.0.7) - 2024-11-02

### ✨ Features
Expand Down
4 changes: 2 additions & 2 deletions crates/aligned-buffer-pool/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "aligned-buffer-pool"
version = "0.0.7"
version = "0.1.0"
edition = "2021"
description = "A buffer-pool with controllable alignment."
license = "MIT"
Expand All @@ -11,7 +11,7 @@ keywords = ["buffer", "rkyv", "bytes"]
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[dependencies]
aligned-buffer = { version = "0.0.10", path = "../aligned-buffer", default-features = false }
aligned-buffer = { version = "0.1.0", path = "../aligned-buffer", default-features = false }
crossbeam-queue = { workspace = true }
fxhash = { workspace = true }
rkyv = { workspace = true, features = ["std"], optional = true }
Expand Down
2 changes: 1 addition & 1 deletion crates/aligned-buffer/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

All notable changes to this project will be documented in this file.

## [0.0.10](https://github.com/YoloDev/rstml-component/compare/0.0.9..0.0.10) - 2024-11-02
## [0.1.0](https://github.com/YoloDev/rstml-component/compare/0.0.9..0.1.0) - 2024-11-02

### ✨ Features

Expand Down
2 changes: 1 addition & 1 deletion crates/aligned-buffer/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "aligned-buffer"
version = "0.0.10"
version = "0.1.0"
edition = "2021"
description = "A buffer with controllable alignment, that can be sealed and shared by reference count."
license = "MIT"
Expand Down
6 changes: 6 additions & 0 deletions crates/rkyv-owned-archive/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,12 @@

All notable changes to this project will be documented in this file.

## [0.1.0](https://github.com/YoloDev/rstml-component/compare/0.0.9..0.1.0) - 2024-11-03

### 🔨 Chore

- Updated the following local packages: aligned-buffer-pool, aligned-buffer-pool - ([0000000](https://github.com/YoloDev/rstml-component/commit/0000000))

## [0.0.9](https://github.com/YoloDev/rstml-component/compare/0.0.8..0.0.9) - 2024-11-02

### ✨ Features
Expand Down
8 changes: 4 additions & 4 deletions crates/rkyv-owned-archive/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "rkyv-owned-archive"
version = "0.0.9"
version = "0.1.0"
edition = "2021"
description = "Helpers for having owned Archived types in rkyv."
license = "MIT"
Expand All @@ -11,12 +11,12 @@ keywords = ["buffer", "rkyv", "bytes"]
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[dependencies]
aligned-buffer = { version = "0.0.10", path = "../aligned-buffer", default-features = false, features = ["rkyv"] }
aligned-buffer-pool = { version = "0.0.7", path = "../aligned-buffer-pool", default-features = false, optional = true, features = ["rkyv"] }
aligned-buffer = { version = "0.1.0", path = "../aligned-buffer", default-features = false, features = ["rkyv"] }
aligned-buffer-pool = { version = "0.1.0", path = "../aligned-buffer-pool", default-features = false, optional = true, features = ["rkyv"] }
rkyv = { workspace = true, features = ["std"] }

[dev-dependencies]
aligned-buffer-pool = { version = "0.0.7", path = "../aligned-buffer-pool", default-features = false, features = ["rkyv"] }
aligned-buffer-pool = { version = "0.1.0", path = "../aligned-buffer-pool", default-features = false, features = ["rkyv"] }

[features]
default = ["bytecheck"]
Expand Down

0 comments on commit 8310013

Please sign in to comment.