Skip to content
Open
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
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.

7 changes: 7 additions & 0 deletions pg-cli/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,13 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [0.3.7](https://github.com/encryption4all/postguard/compare/pg-cli-v0.3.6...pg-cli-v0.3.7) - 2026-05-19

### Other

- bump reqwest 0.12 β†’ 0.13 and inquire 0.6 β†’ 0.9 ([#196](https://github.com/encryption4all/postguard/pull/196))
- consume irmars from crates.io and bump reqwest to 0.12 ([#192](https://github.com/encryption4all/postguard/pull/192))

## [0.3.6](https://github.com/encryption4all/postguard/compare/pg-cli-v0.3.5...pg-cli-v0.3.6) - 2026-05-16

### Other
Expand Down
4 changes: 2 additions & 2 deletions pg-cli/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,10 +11,10 @@ license = "MIT"
repository = "https://github.com/encryption4all/postguard"
categories = ["cryptography"]
name = "pg-cli"
version = "0.3.6"
version = "0.3.7"

[dependencies]
pg-core = { path = "../pg-core", version = "0.6.1", features = ["stream"] }
pg-core = { path = "../pg-core", version = "0.6.2", features = ["stream"] }
futures = "0.3.27"
rand = "0.8.4"
clap = { version = "4", features = ["derive"] }
Expand Down
7 changes: 7 additions & 0 deletions pg-core/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,13 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [0.6.2](https://github.com/encryption4all/postguard/compare/pg-core-v0.6.1...pg-core-v0.6.2) - 2026-05-19

### Other

- consume irmars from crates.io and bump reqwest to 0.12 ([#192](https://github.com/encryption4all/postguard/pull/192))
- bump bincode-next 3.0.0-rc.13 to 3.0.0-rc.14 ([#191](https://github.com/encryption4all/postguard/pull/191))

## [0.6.1](https://github.com/encryption4all/postguard/compare/pg-core-v0.6.0...pg-core-v0.6.1) - 2026-05-16

### Other
Expand Down
2 changes: 1 addition & 1 deletion pg-core/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "pg-core"
description = "PostGuard core library for communication and bytestream operations."
version = "0.6.1"
version = "0.6.2"
authors = [
"Leon Botros <l.botros@cs.ru.nl>",
"Wouter Geraedts <git@woutergeraedts.nl>",
Expand Down
9 changes: 9 additions & 0 deletions pg-pkg/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,15 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [0.5.12](https://github.com/encryption4all/postguard/compare/pg-pkg-v0.5.11...pg-pkg-v0.5.12) - 2026-05-19

### Other

- bump reqwest 0.12 β†’ 0.13 and inquire 0.6 β†’ 0.9 ([#196](https://github.com/encryption4all/postguard/pull/196))
- consume irmars from crates.io and bump reqwest to 0.12 ([#192](https://github.com/encryption4all/postguard/pull/192))
- bump bincode-next 3.0.0-rc.13 to 3.0.0-rc.14 ([#191](https://github.com/encryption4all/postguard/pull/191))
- address cargo audit advisories

## [0.5.11](https://github.com/encryption4all/postguard/compare/pg-pkg-v0.5.10...pg-pkg-v0.5.11) - 2026-05-16

### Added
Expand Down
4 changes: 2 additions & 2 deletions pg-pkg/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ license = "MIT"
categories = ["cryptography"]
repository = "https://github.com/encryption4all/postguard"
name = "pg-pkg"
version = "0.5.11"
version = "0.5.12"

[dependencies]
actix-cors = "0.7"
Expand Down Expand Up @@ -50,5 +50,5 @@ version = "0.3"

[dependencies.pg-core]
path = "../pg-core"
version = "0.6.1"
version = "0.6.2"
features = []