Skip to content

Commit 0d4a131

Browse files
chore: release 3.0.2 (#418)
After merging this PR, tag the merge commit with: ```shell git tag 3.0.2 git push origin 3.0.2 ``` Co-authored-by: nathanosdev <[email protected]>
1 parent 5817cef commit 0d4a131

File tree

7 files changed

+38
-32
lines changed

7 files changed

+38
-32
lines changed

.cz.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ commitizen:
33
name: cz_conventional_commits
44
tag_format: $version
55
update_changelog_on_bump: true
6-
version: 3.0.1
6+
version: 3.0.2
77
version_files:
88
- Cargo.toml
99
- packages/certificate-verification-js/package.json:version

CHANGELOG.md

+6
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
## 3.0.2 (2024-12-20)
2+
3+
### Fix
4+
5+
- **ic-asset-certification**: include range header in streaming request certification (#417)
6+
17
## 3.0.1 (2024-12-20)
28

39
### Fix

Cargo.lock

+20-20
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

+8-8
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ default-members = [
4040
]
4141

4242
[workspace.package]
43-
version = "3.0.1"
43+
version = "3.0.2"
4444
authors = ["DFINITY Stiftung"]
4545
edition = "2021"
4646
repository = "https://github.com/dfinity/response-verification"
@@ -95,15 +95,15 @@ rand = "0.8"
9595
getrandom = { version = "0.2", features = ["js"] }
9696
rand_chacha = "0.3"
9797

98-
ic-asset-certification = { path = "./packages/ic-asset-certification", version = "3.0.1" }
99-
ic-certification = { path = "./packages/ic-certification", default-features = false, version = "3.0.1" }
100-
ic-http-certification = { path = "./packages/ic-http-certification", version = "3.0.1" }
98+
ic-asset-certification = { path = "./packages/ic-asset-certification", version = "3.0.2" }
99+
ic-certification = { path = "./packages/ic-certification", default-features = false, version = "3.0.2" }
100+
ic-http-certification = { path = "./packages/ic-http-certification", version = "3.0.2" }
101101
ic-certification-testing = { path = "./packages/ic-certification-testing" }
102-
ic-representation-independent-hash = { path = "./packages/ic-representation-independent-hash", version = "3.0.1" }
103-
ic-certificate-verification = { path = "./packages/ic-certificate-verification", version = "3.0.1" }
104-
ic-response-verification = { path = "./packages/ic-response-verification", version = "3.0.1" }
102+
ic-representation-independent-hash = { path = "./packages/ic-representation-independent-hash", version = "3.0.2" }
103+
ic-certificate-verification = { path = "./packages/ic-certificate-verification", version = "3.0.2" }
104+
ic-response-verification = { path = "./packages/ic-response-verification", version = "3.0.2" }
105105
ic-response-verification-test-utils = { path = "./packages/ic-response-verification-test-utils" }
106-
ic-cbor = { path = "./packages/ic-cbor", version = "3.0.1" }
106+
ic-cbor = { path = "./packages/ic-cbor", version = "3.0.2" }
107107

108108

109109
[workspace.dependencies.ic-types]

packages/certificate-verification-js/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@dfinity/certificate-verification",
33
"description": "Client side certificate verification for the Internet Computer",
4-
"version": "3.0.1",
4+
"version": "3.0.2",
55
"author": "DFINITY Stiftung",
66
"license": "Apache-2.0",
77
"repository": "github:dfinity/response-verification",

packages/ic-certification-testing-wasm/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@dfinity/certification-testing",
33
"description": "Utilities for testing applications that work with Internet Computer certification",
4-
"version": "3.0.1",
4+
"version": "3.0.2",
55
"author": "DFINITY Stiftung",
66
"license": "Apache-2.0",
77
"repository": "github:dfinity/response-verification",

packages/ic-response-verification-wasm/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@dfinity/response-verification",
33
"description": "Client side response verification for the Internet Computer",
4-
"version": "3.0.1",
4+
"version": "3.0.2",
55
"author": "DFINITY Stiftung",
66
"license": "Apache-2.0",
77
"repository": "github:dfinity/response-verification",

0 commit comments

Comments
 (0)