Skip to content

Commit 6045bc8

Browse files
committed
Merge remote-tracking branch 'origin/master' into claude/confident-ramanujan-MqHwi
# Conflicts: # tools/pcf-debug/Cargo.toml
2 parents f1c3186 + e888082 commit 6045bc8

8 files changed

Lines changed: 13 additions & 13 deletions

File tree

implementations/dotnet/Directory.Build.props

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<!-- Shared metadata for every .NET library under implementations/dotnet/
44
(pcf/, and future libraries such as pfs/). Lockstep version lives here. -->
55
<PropertyGroup>
6-
<Version>0.0.5</Version>
6+
<Version>0.0.6</Version>
77
<Authors>Krystian Duma</Authors>
88
<Company>kduma-OSS</Company>
99
<Product>Partitioned Container Format</Product>

implementations/ts/package-lock.json

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

implementations/ts/pcf/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@kduma-oss/pcf",
3-
"version": "0.0.5",
3+
"version": "0.0.6",
44
"description": "TypeScript implementation of the Partitioned Container Format (PCF) v1.0",
55
"license": "MIT OR Apache-2.0",
66
"author": "Krystian Duma",

reference/PCF-SIG-v1.0/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "pcf-sig"
3-
version = "0.0.5"
3+
version = "0.0.6"
44
edition = "2021"
55
description = "Reference implementation of PCF-SIG v1.0, the PCF Cryptographic Signatures profile"
66
license = "MIT OR Apache-2.0"
@@ -17,7 +17,7 @@ categories = ["cryptography", "encoding"]
1717
[dependencies]
1818
# The PCF-SIG profile is layered strictly above PCF v1.0; every byte container
1919
# operation goes through the reference PCF crate.
20-
pcf = { path = "../PCF-v1.0", version = "0.0.5" }
20+
pcf = { path = "../PCF-v1.0", version = "0.0.6" }
2121

2222
# SHA-256 for key fingerprints and for the optional independent re-hash check
2323
# during verification. Pinned by the PCF crate already; we re-use it here.

reference/PCF-v1.0/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "pcf"
3-
version = "0.0.5"
3+
version = "0.0.6"
44
edition = "2021"
55
description = "Reference implementation of the Partitioned Container Format (PCF) v1.0"
66
license = "MIT OR Apache-2.0"

reference/PFS-MS-v1.0/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "pfs-ms"
3-
version = "0.0.5"
3+
version = "0.0.6"
44
edition = "2021"
55
description = "Reference implementation of PFS-MS v1.0, the PCF File System Multi-Session profile"
66
license = "MIT OR Apache-2.0"
@@ -21,7 +21,7 @@ path = "src/bin/pfs.rs"
2121
[dependencies]
2222
# The PFS-MS profile is layered strictly above PCF v1.0; every byte container
2323
# operation goes through the reference PCF crate.
24-
pcf = { path = "../PCF-v1.0", version = "0.0.5" }
24+
pcf = { path = "../PCF-v1.0", version = "0.0.6" }
2525

2626
# VCDIFF (RFC 3284) is the required delta algorithm (patch_algo_id = 1).
2727
# `oxidelta` is a pure-Rust encoder/decoder; default features (CLI, file-io,

tools/pcf-compact/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "pcf-compact"
3-
version = "0.0.5"
3+
version = "0.0.6"
44
edition = "2021"
55
rust-version = "1.75"
66
license = "MIT OR Apache-2.0"
@@ -20,4 +20,4 @@ name = "pcf-compact"
2020
path = "src/main.rs"
2121

2222
[dependencies]
23-
pcf = { path = "../../reference/PCF-v1.0", version = "0.0.5" }
23+
pcf = { path = "../../reference/PCF-v1.0", version = "0.0.6" }

tools/pcf-debug/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "pcf-debug"
3-
version = "0.0.5"
3+
version = "0.0.6"
44
edition = "2021"
55
rust-version = "1.75"
66
license = "MIT OR Apache-2.0"
@@ -16,5 +16,5 @@ name = "pcf-debug"
1616
path = "src/main.rs"
1717

1818
[dependencies]
19-
pcf = { path = "../../reference/PCF-v1.0", version = "0.0.5" }
20-
pcf-sig = { path = "../../reference/PCF-SIG-v1.0", version = "0.0.5" }
19+
pcf = { path = "../../reference/PCF-v1.0", version = "0.0.6" }
20+
pcf-sig = { path = "../../reference/PCF-SIG-v1.0", version = "0.0.6" }

0 commit comments

Comments
 (0)