Skip to content

Commit

Permalink
🆙 0.2.0 minor autobump (#400)
Browse files Browse the repository at this point in the history
This is because indicate that v 0.2.x and later will:

- not support v1 (entity object, etc.)
- will add a simplified and unified API for TDF manipulation, sharing patterns between different container formats
- other radical changes tbd
  • Loading branch information
dmihalcik-virtru authored Dec 11, 2024
1 parent 040cc60 commit 3155010
Show file tree
Hide file tree
Showing 9 changed files with 24 additions and 396 deletions.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@

version=0.1.0
version=0.2.0
extras=cli web-app
pkgs=lib $(extras)

Expand Down
153 changes: 6 additions & 147 deletions cli/package-lock.json

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

4 changes: 2 additions & 2 deletions cli/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@opentdf/ctl",
"version": "0.1.0",
"version": "0.2.0",
"description": "Node based CLI for opentdf",
"repository": {
"type": "git",
Expand Down Expand Up @@ -48,7 +48,7 @@
"typescript": "^5.1.6"
},
"dependencies": {
"@opentdf/sdk": "file:../lib/opentdf-sdk-0.1.0.tgz",
"@opentdf/sdk": "file:../lib/opentdf-sdk-0.2.0.tgz",
"yargs": "^17.7.2"
}
}
4 changes: 2 additions & 2 deletions lib/package-lock.json

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

2 changes: 1 addition & 1 deletion lib/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{

Check notice on line 1 in lib/package.json

View workflow job for this annotation

GitHub Actions / deliver-ghp

Will be published to [GitHub Packages](https://github.com/opentdf/web-sdk/pkgs/npm/client) as beta with version=[0.2.0-beta.1753+12283155336.315501]
"name": "@opentdf/sdk",
"version": "0.1.0",
"version": "0.2.0",
"description": "OpenTDF for the Web",
"homepage": "https://github.com/opentdf/web-sdk",
"bugs": {
Expand Down
2 changes: 1 addition & 1 deletion lib/src/version.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
/**
* Exposes the released version number of the `@opentdf/sdk` package
*/
export const version = '0.1.0';
export const version = '0.2.0';

/**
* A string name used to label requests as coming from this library client.
Expand Down
2 changes: 1 addition & 1 deletion lib/tdf3/src/version.ts
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
export const version = '0.1.0';
export const version = '0.2.0';
export const clientType = 'tdf3-js-client';
Loading

0 comments on commit 3155010

Please sign in to comment.