Skip to content

Commit

Permalink
chore(release): publish
Browse files Browse the repository at this point in the history
  • Loading branch information
github-actions committed Aug 19, 2024
1 parent 76cca87 commit c3e4e88
Show file tree
Hide file tree
Showing 11 changed files with 108 additions and 21 deletions.
20 changes: 20 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
# Change Log

All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

# 1.1.0 (2024-08-19)


### Bug Fixes

* Incorrect excluding of signed data ([85c800f](https://github.com/PeculiarVentures/attestation/commit/85c800f6d7a11c9b3282d6b94c8a9e264e7e40a4))
* Type errors ([269039e](https://github.com/PeculiarVentures/attestation/commit/269039e4179335c0c2bc0d60643ad5e72b31efd1))
* update eslint and fix errors ([c2dfbc2](https://github.com/PeculiarVentures/attestation/commit/c2dfbc2e4b9369e034d51acc71ab6999bf532f4a))
* Update main.ts to include shebang for executable ([e9c9b33](https://github.com/PeculiarVentures/attestation/commit/e9c9b3336337231f4847f674f5d133d4be7560c5))


### Features

* add files ([a2d87a6](https://github.com/PeculiarVentures/attestation/commit/a2d87a6e57b2e641a923f5f75a93b2d7c65ade3a))
* Split project into multiple packages using lerna ([12712e5](https://github.com/PeculiarVentures/attestation/commit/12712e5613adaa084268819ea320518be67182d7))
2 changes: 1 addition & 1 deletion lerna.json
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{
"$schema": "node_modules/lerna/schemas/lerna-schema.json",
"version": "1.0.0"
"version": "1.1.0"
}
16 changes: 8 additions & 8 deletions package-lock.json

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

17 changes: 17 additions & 0 deletions packages/cli/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
# Change Log

All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

# 1.1.0 (2024-08-19)


### Bug Fixes

* update eslint and fix errors ([c2dfbc2](https://github.com/PeculiarVentures/attestation/commit/c2dfbc2e4b9369e034d51acc71ab6999bf532f4a))
* Update main.ts to include shebang for executable ([e9c9b33](https://github.com/PeculiarVentures/attestation/commit/e9c9b3336337231f4847f674f5d133d4be7560c5))


### Features

* Split project into multiple packages using lerna ([12712e5](https://github.com/PeculiarVentures/attestation/commit/12712e5613adaa084268819ea320518be67182d7))
8 changes: 4 additions & 4 deletions packages/cli/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@peculiar/attestation-cli",
"version": "1.0.0",
"version": "1.1.0",
"description": "A CLI utility for verifying attestation data in various formats, supporting multiple attestation providers and offering a range of commands to interact with attestation files and certificates.",
"homepage": "https://github.com/PeculiarVentures/attestation/tree/master/packages/cli#readme",
"bugs": {
Expand All @@ -18,8 +18,8 @@
"package.json"
],
"dependencies": {
"@peculiar/attestation-marvell": "^1.0.0",
"@peculiar/attestation-yubico": "^1.0.0",
"@peculiar/attestation-marvell": "^1.1.0",
"@peculiar/attestation-yubico": "^1.1.0",
"@peculiar/x509": "^1.12.1",
"commander": "^12.1.0",
"tslib": "^2.6.3"
Expand All @@ -37,4 +37,4 @@
],
"author": "PeculiarVentures",
"license": "MIT"
}
}
16 changes: 16 additions & 0 deletions packages/common/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
# Change Log

All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

# 1.1.0 (2024-08-19)


### Bug Fixes

* update eslint and fix errors ([c2dfbc2](https://github.com/PeculiarVentures/attestation/commit/c2dfbc2e4b9369e034d51acc71ab6999bf532f4a))


### Features

* Split project into multiple packages using lerna ([12712e5](https://github.com/PeculiarVentures/attestation/commit/12712e5613adaa084268819ea320518be67182d7))
4 changes: 2 additions & 2 deletions packages/common/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@peculiar/attestation-common",
"version": "1.0.0",
"version": "1.1.0",
"description": "A common module providing tools and interfaces for verifying HSM attestation files.",
"homepage": "https://github.com/PeculiarVentures/attestation/tree/master/packages/common#readme",
"bugs": {
Expand Down Expand Up @@ -32,4 +32,4 @@
],
"author": "PeculiarVentures",
"license": "MIT"
}
}
17 changes: 17 additions & 0 deletions packages/marvell/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
# Change Log

All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

# 1.1.0 (2024-08-19)


### Bug Fixes

* Type errors ([269039e](https://github.com/PeculiarVentures/attestation/commit/269039e4179335c0c2bc0d60643ad5e72b31efd1))
* update eslint and fix errors ([c2dfbc2](https://github.com/PeculiarVentures/attestation/commit/c2dfbc2e4b9369e034d51acc71ab6999bf532f4a))


### Features

* Split project into multiple packages using lerna ([12712e5](https://github.com/PeculiarVentures/attestation/commit/12712e5613adaa084268819ea320518be67182d7))
6 changes: 3 additions & 3 deletions packages/marvell/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@peculiar/attestation-marvell",
"version": "1.0.0",
"version": "1.1.0",
"description": "A library providing tools to verify HSM attestation files from various HSMs that support Marvell attestation, including support for certificate chain validation and attestation data extraction.",
"homepage": "https://github.com/PeculiarVentures/attestation/tree/master/packages/marvell#readme",
"bugs": {
Expand All @@ -19,7 +19,7 @@
"@peculiar/asn1-rsa": "^2.3.13",
"@peculiar/asn1-schema": "^2.3.13",
"@peculiar/asn1-x509": "^2.3.13",
"@peculiar/attestation-common": "^1.0.0",
"@peculiar/attestation-common": "^1.1.0",
"@peculiar/x509": "^1.12.1",
"pako": "^2.1.0",
"pvtsutils": "^1.3.5",
Expand All @@ -40,4 +40,4 @@
],
"author": "PeculiarVentures",
"license": "MIT"
}
}
17 changes: 17 additions & 0 deletions packages/yubico/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
# Change Log

All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

# 1.1.0 (2024-08-19)


### Bug Fixes

* Type errors ([269039e](https://github.com/PeculiarVentures/attestation/commit/269039e4179335c0c2bc0d60643ad5e72b31efd1))
* update eslint and fix errors ([c2dfbc2](https://github.com/PeculiarVentures/attestation/commit/c2dfbc2e4b9369e034d51acc71ab6999bf532f4a))


### Features

* Split project into multiple packages using lerna ([12712e5](https://github.com/PeculiarVentures/attestation/commit/12712e5613adaa084268819ea320518be67182d7))
6 changes: 3 additions & 3 deletions packages/yubico/package.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"version": "1.0.0",
"version": "1.1.0",
"name": "@peculiar/attestation-yubico",
"description": "A library providing tools to verify PIV attestation files from Yubico, including support for certificate chain validation and attestation data extraction.",
"homepage": "https://github.com/PeculiarVentures/attestation/tree/master/packages/yubico#readme",
Expand All @@ -16,7 +16,7 @@
"package.json"
],
"dependencies": {
"@peculiar/attestation-common": "^1.0.0",
"@peculiar/attestation-common": "^1.1.0",
"@peculiar/x509": "^1.12.1",
"graphene-pk11": "^2.3.5",
"tslib": "^2.6.3"
Expand All @@ -37,4 +37,4 @@
],
"author": "PeculiarVentures",
"license": "MIT"
}
}

0 comments on commit c3e4e88

Please sign in to comment.