Skip to content

Commit

Permalink
Merge pull request #47 from YoloDev/release-plz-2024-11-03T15-25-02Z
Browse files Browse the repository at this point in the history
chore: release
  • Loading branch information
Alxandr authored Nov 3, 2024
2 parents 4a86774 + a0d0b42 commit c17ef17
Show file tree
Hide file tree
Showing 7 changed files with 28 additions and 10 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.1](https://github.com/YoloDev/rstml-component/compare/0.1.0..0.1.1) - 2024-11-03

### 🔨 Chore

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

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

### ✨ 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.1.0"
version = "0.1.1"
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.1.0", path = "../aligned-buffer", default-features = false }
aligned-buffer = { version = "0.2.0", path = "../aligned-buffer", default-features = false }
crossbeam-queue = { workspace = true }
fxhash = { workspace = true }
rkyv = { workspace = true, features = ["std"], optional = true }
Expand Down
6 changes: 6 additions & 0 deletions crates/aligned-buffer/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.2.0](https://github.com/YoloDev/rstml-component/compare/0.1.0..0.2.0) - 2024-11-03

### ✨ Features

- BufMut with custom allocator - ([4a86774](https://github.com/YoloDev/rstml-component/commit/4a86774095017a6a88a761a89b19b35057219f64))

## [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.1.0"
version = "0.2.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.1](https://github.com/YoloDev/rstml-component/compare/0.1.0..0.1.1) - 2024-11-03

### 🔨 Chore

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

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

### 🔨 Chore
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.1.0"
version = "0.1.1"
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.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"] }
aligned-buffer = { version = "0.2.0", path = "../aligned-buffer", default-features = false, features = ["rkyv"] }
aligned-buffer-pool = { version = "0.1.1", path = "../aligned-buffer-pool", default-features = false, optional = true, features = ["rkyv"] }
rkyv = { workspace = true, features = ["std"] }

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

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

0 comments on commit c17ef17

Please sign in to comment.