Skip to content

Commit e8026e9

Browse files
Bump version to v0.0.9
1 parent 4ffee36 commit e8026e9

11 files changed

Lines changed: 20 additions & 20 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.8</Version>
6+
<Version>0.0.9</Version>
77
<Authors>Krystian Duma</Authors>
88
<Company>kduma-OSS</Company>
99
<Product>Partitioned Container Format</Product>

implementations/php/pcf-sig/composer.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
"php": ">=8.1",
1414
"ext-hash": "*",
1515
"ext-sodium": "*",
16-
"kduma/pcf": "^0.0.8"
16+
"kduma/pcf": "^0.0.9"
1717
},
1818
"require-dev": {
1919
"phpunit/phpunit": "^10.5 || ^11.0"
@@ -24,7 +24,7 @@
2424
"url": "../pcf",
2525
"options": {
2626
"symlink": true,
27-
"versions": { "kduma/pcf": "0.0.8" }
27+
"versions": { "kduma/pcf": "0.0.9" }
2828
}
2929
}
3030
],

implementations/ts/package-lock.json

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

implementations/ts/pcf-sig/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-sig",
3-
"version": "0.0.8",
3+
"version": "0.0.9",
44
"description": "TypeScript implementation of PCF-SIG v1.0, the PCF Cryptographic Signatures profile",
55
"license": "MIT OR Apache-2.0",
66
"author": "Krystian Duma",

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.8",
3+
"version": "0.0.9",
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-DCP-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-dcp"
3-
version = "0.0.8"
3+
version = "0.0.9"
44
edition = "2021"
55
description = "Reference implementation of PCF-DCP v1.0, the PCF Dynamic Container Partition profile"
66
license = "MIT OR Apache-2.0"
@@ -22,4 +22,4 @@ path = "src/bin/dcp.rs"
2222
# The PCF-DCP profile is layered strictly above PCF v1.0; every byte container
2323
# operation goes through the reference PCF crate. The arena reuses PCF's Table
2424
# Block, Partition Entry, and table-hash primitives directly.
25-
pcf = { path = "../PCF-v1.0", version = "0.0.8" }
25+
pcf = { path = "../PCF-v1.0", version = "0.0.9" }

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.8"
3+
version = "0.0.9"
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.8" }
20+
pcf = { path = "../PCF-v1.0", version = "0.0.9" }
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.8"
3+
version = "0.0.9"
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.8"
3+
version = "0.0.9"
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.8" }
24+
pcf = { path = "../PCF-v1.0", version = "0.0.9" }
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.8"
3+
version = "0.0.9"
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.8" }
23+
pcf = { path = "../../reference/PCF-v1.0", version = "0.0.9" }

0 commit comments

Comments
 (0)