Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: release #59

Closed
wants to merge 1 commit into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
36 changes: 18 additions & 18 deletions Cargo.lock

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

14 changes: 14 additions & 0 deletions crates/aranya-afc-util/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
# Changelog

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

The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [Unreleased]

## [0.3.1](https://github.com/aranya-project/aranya-core/compare/aranya-afc-util-v0.3.0...aranya-afc-util-v0.3.1) - 2025-01-15

### Other

- updated the following local packages: aranya-crypto, aranya-policy-vm, aranya-fast-channels
8 changes: 4 additions & 4 deletions crates/aranya-afc-util/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "aranya-afc-util"
description = "Utilities for using Aranya Fast Channels"
version = "0.3.0"
version = "0.3.1"
authors.workspace = true
edition.workspace = true
license.workspace = true
Expand Down Expand Up @@ -43,9 +43,9 @@ testing = [
]

[dependencies]
aranya-crypto = { version = "0.2.1", path = "../aranya-crypto", default-features = false, features = ["alloc"] }
aranya-fast-channels = { version = "0.3.0", path = "../aranya-fast-channels", default-features = false, features = ["alloc"] }
aranya-policy-vm = { version = "0.3.0", path = "../aranya-policy-vm", default-features = false, features = ["derive"] }
aranya-crypto = { version = "0.2.2", path = "../aranya-crypto", default-features = false, features = ["alloc"] }
aranya-fast-channels = { version = "0.3.1", path = "../aranya-fast-channels", default-features = false, features = ["alloc"] }
aranya-policy-vm = { version = "0.3.2", path = "../aranya-policy-vm", default-features = false, features = ["derive"] }

indexmap = { version = "2.1", default-features = false, optional = true }
postcard = { workspace = true, default-features = false, features = ["heapless"] }
Expand Down
14 changes: 14 additions & 0 deletions crates/aranya-crypto-core/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
# Changelog

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

The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [Unreleased]

## [0.1.1](https://github.com/aranya-project/aranya-core/compare/aranya-crypto-core-v0.1.0...aranya-crypto-core-v0.1.1) - 2025-01-15

### Other

- use ChaCha8 instead of AES-CTR for `trng` CSPRNG (#45)
4 changes: 2 additions & 2 deletions crates/aranya-crypto-core/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "aranya-crypto-core"
description = "Low level Aranya Cryptography"
version = "0.1.0"
version = "0.1.1"
authors.workspace = true
edition.workspace = true
license.workspace = true
Expand Down Expand Up @@ -140,7 +140,7 @@ trng = [

[dependencies]
aranya-buggy = { version = "0.1.0", path = "../aranya-buggy", default-features = false }
aranya-crypto-derive = { version = "0.2.0", path = "../aranya-crypto-derive" }
aranya-crypto-derive = { version = "0.2.1", path = "../aranya-crypto-derive" }

aranya-bearssl-sys = { version = "0.1.0", optional = true }

Expand Down
14 changes: 14 additions & 0 deletions crates/aranya-crypto-derive/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
# Changelog

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

The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [Unreleased]

## [0.2.1](https://github.com/aranya-project/aranya-core/compare/aranya-crypto-derive-v0.2.0...aranya-crypto-derive-v0.2.1) - 2025-01-15

### Other

- move low level crypto into `aranya-crypto-core` (#34)
2 changes: 1 addition & 1 deletion crates/aranya-crypto-derive/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "aranya-crypto-derive"
description = "Proc macros for aranya-crypto"
version = "0.2.0"
version = "0.2.1"
authors.workspace = true
edition.workspace = true
license.workspace = true
Expand Down
14 changes: 14 additions & 0 deletions crates/aranya-crypto-ffi/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
# Changelog

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

The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [Unreleased]

## [0.3.1](https://github.com/aranya-project/aranya-core/compare/aranya-crypto-ffi-v0.3.0...aranya-crypto-ffi-v0.3.1) - 2025-01-15

### Other

- updated the following local packages: aranya-crypto, aranya-policy-vm
6 changes: 3 additions & 3 deletions crates/aranya-crypto-ffi/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "aranya-crypto-ffi"
description = "The crypto FFI for Aranya Policy"
version = "0.3.0"
version = "0.3.1"
authors.workspace = true
edition.workspace = true
license.workspace = true
Expand Down Expand Up @@ -40,8 +40,8 @@ testing = [
]

[dependencies]
aranya-crypto = { version = "0.2.1", path = "../aranya-crypto", default-features = false, features = ["alloc"] }
aranya-policy-vm = { version = "0.3.0", path = "../aranya-policy-vm", default-features = false, features = ["derive"] }
aranya-crypto = { version = "0.2.2", path = "../aranya-crypto", default-features = false, features = ["alloc"] }
aranya-policy-vm = { version = "0.3.2", path = "../aranya-policy-vm", default-features = false, features = ["derive"] }

postcard = { workspace = true, default-features = false, features = ["heapless"] }
serde = { workspace = true, default-features = false, features = ["derive"], optional = true }
Expand Down
16 changes: 16 additions & 0 deletions crates/aranya-crypto/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
# Changelog

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

The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [Unreleased]

## [0.2.2](https://github.com/aranya-project/aranya-core/compare/aranya-crypto-v0.2.1...aranya-crypto-v0.2.2) - 2025-01-15

### Other

- update references from flow3-docs to aranya-docs (#7)
- move low level crypto into `aranya-crypto-core` (#34)
- clean up SHA-3 code (#91)
4 changes: 2 additions & 2 deletions crates/aranya-crypto/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "aranya-crypto"
description = "The Aranya Cryptography Engine"
version = "0.2.1"
version = "0.2.2"
authors.workspace = true
edition.workspace = true
license.workspace = true
Expand Down Expand Up @@ -116,7 +116,7 @@ trng = ["aranya-crypto-core/trng"]
[dependencies]
aranya-base58 = { version = "0.1.0", path = "../aranya-base58", default-features = false }
aranya-buggy = { version = "0.1.0", path = "../aranya-buggy", default-features = false }
aranya-crypto-core = { version = "0.1.0", path = "../aranya-crypto-core", default-features = false }
aranya-crypto-core = { version = "0.1.1", path = "../aranya-crypto-core", default-features = false }
aranya-trouble = { version = "0.1.0", path = "../aranya-trouble", default-features = false }

byteorder = { workspace = true, default-features = false }
Expand Down
14 changes: 14 additions & 0 deletions crates/aranya-device-ffi/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
# Changelog

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

The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [Unreleased]

## [0.3.1](https://github.com/aranya-project/aranya-core/compare/aranya-device-ffi-v0.3.0...aranya-device-ffi-v0.3.1) - 2025-01-15

### Other

- updated the following local packages: aranya-crypto, aranya-policy-vm
6 changes: 3 additions & 3 deletions crates/aranya-device-ffi/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "aranya-device-ffi"
description = "The device FFI for Aranya Policy"
version = "0.3.0"
version = "0.3.1"
authors.workspace = true
edition.workspace = true
license.workspace = true
Expand All @@ -24,8 +24,8 @@ std = ["alloc"]
testing = []

[dependencies]
aranya-crypto = { version = "0.2.1", path = "../aranya-crypto", default-features = false }
aranya-policy-vm = { version = "0.3.0", path = "../aranya-policy-vm", default-features = false, features = ["derive"] }
aranya-crypto = { version = "0.2.2", path = "../aranya-crypto", default-features = false }
aranya-policy-vm = { version = "0.3.2", path = "../aranya-policy-vm", default-features = false, features = ["derive"] }

[dev-dependencies]
aranya-crypto = { path = "../aranya-crypto", features = ["getrandom"] }
Expand Down
14 changes: 14 additions & 0 deletions crates/aranya-envelope-ffi/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
# Changelog

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

The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [Unreleased]

## [0.3.1](https://github.com/aranya-project/aranya-core/compare/aranya-envelope-ffi-v0.3.0...aranya-envelope-ffi-v0.3.1) - 2025-01-15

### Other

- updated the following local packages: aranya-crypto, aranya-policy-vm
6 changes: 3 additions & 3 deletions crates/aranya-envelope-ffi/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "aranya-envelope-ffi"
description = "The envelope FFI for Aranya Policy"
version = "0.3.0"
version = "0.3.1"
authors.workspace = true
edition.workspace = true
license.workspace = true
Expand All @@ -28,8 +28,8 @@ std = [
]

[dependencies]
aranya-crypto = { version = "0.2.1", path = "../aranya-crypto", default-features = false, features = ["alloc"] }
aranya-policy-vm = { version = "0.3.0", path = "../aranya-policy-vm", default-features = false, features = ["derive"] }
aranya-crypto = { version = "0.2.2", path = "../aranya-crypto", default-features = false, features = ["alloc"] }
aranya-policy-vm = { version = "0.3.2", path = "../aranya-policy-vm", default-features = false, features = ["derive"] }

tracing = { workspace = true }

Expand Down
Loading