Skip to content

Commit 97ab5ad

Browse files
chore(main): release sdk 0.6.0
1 parent bb29962 commit 97ab5ad

File tree

8 files changed

+23
-10
lines changed

8 files changed

+23
-10
lines changed
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
{
2-
".": "0.5.0"
2+
".": "0.6.0"
33
}

CHANGELOG.md

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,18 @@
11
# Changelog
22

3+
## [0.6.0](https://github.com/opentdf/web-sdk/compare/sdk-v0.5.0...sdk-v0.6.0) (2025-10-29)
4+
5+
6+
### Features
7+
8+
* **ci:** Add a workflow to update the generated code for new protocol/go versions ([#767](https://github.com/opentdf/web-sdk/issues/767)) ([c9d5f21](https://github.com/opentdf/web-sdk/commit/c9d5f21f89c7a523a524b8da3345c9b0c69743dc))
9+
* **sdk:** Move to rewrap v2 request/response format ([#774](https://github.com/opentdf/web-sdk/issues/774)) ([e7718d5](https://github.com/opentdf/web-sdk/commit/e7718d583d2cd1b770afd4bb0b3159d5a05ba21c))
10+
11+
12+
### Bug Fixes
13+
14+
* **sdk:** Additional comments and cleanup of Rewrap V2 code ([#780](https://github.com/opentdf/web-sdk/issues/780)) ([bb29962](https://github.com/opentdf/web-sdk/commit/bb299623d82572509b6a59557a97e5cca5ad6740))
15+
316
## [0.5.0](https://github.com/opentdf/web-sdk/compare/sdk/v0.4.0...sdk-v0.5.0) (2025-10-17)
417

518

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11

22
# x-release-please-start-version
3-
version=0.5.0
3+
version=0.6.0
44
# x-release-please-end
55
extras=cli web-app
66
pkgs=lib $(extras)

cli/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@opentdf/ctl",
3-
"version": "0.5.0",
3+
"version": "0.6.0",
44
"description": "Node based CLI for opentdf",
55
"repository": {
66
"type": "git",
@@ -51,7 +51,7 @@
5151
"typescript-eslint": "^8.26.0"
5252
},
5353
"dependencies": {
54-
"@opentdf/sdk": "file:../lib/opentdf-sdk-0.5.0.tgz",
54+
"@opentdf/sdk": "file:../lib/opentdf-sdk-0.6.0.tgz",
5555
"yargs": "^17.7.2"
5656
}
5757
}

lib/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@opentdf/sdk",
3-
"version": "0.5.0",
3+
"version": "0.6.0",
44
"description": "OpenTDF for the Web",
55
"homepage": "https://github.com/opentdf/web-sdk",
66
"bugs": {

lib/src/version.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/**
22
* Exposes the released version number of the `@opentdf/sdk` package
33
*/
4-
export const version = '0.5.0'; // x-release-please-version
4+
export const version = '0.6.0'; // x-release-please-version
55

66
/**
77
* A string name used to label requests as coming from this library client.

version.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
0.5.0
1+
0.6.0

web-app/package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "web-app",
3-
"version": "0.5.0",
3+
"version": "0.6.0",
44
"license": "BSD-3-Clause-Clear",
55
"type": "module",
66
"scripts": {
@@ -14,10 +14,10 @@
1414
"preview": "vite preview",
1515
"test": "vite build && vitest",
1616
"test:ui": "vite build && vitest --ui",
17-
"rebuild": "npm remove @opentdf/sdk && npm add file:../lib/opentdf-sdk-0.5.0.tgz && npm run dev"
17+
"rebuild": "npm remove @opentdf/sdk && npm add file:../lib/opentdf-sdk-0.6.0.tgz && npm run dev"
1818
},
1919
"dependencies": {
20-
"@opentdf/sdk": "file:../lib/opentdf-sdk-0.5.0.tgz",
20+
"@opentdf/sdk": "file:../lib/opentdf-sdk-0.6.0.tgz",
2121
"clsx": "^2.1.1",
2222
"native-file-system-adapter": "^3.0.1",
2323
"react": "^19.0.0",

0 commit comments

Comments
 (0)