Skip to content

Commit

Permalink
bump version (#198)
Browse files Browse the repository at this point in the history
  • Loading branch information
ivanovSPvirtru authored Jun 13, 2023
1 parent 33ccd31 commit aaf87c5
Show file tree
Hide file tree
Showing 10 changed files with 23 additions and 23 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/roundtrip/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,6 @@
"description": "Simple example to encrypt and decrypt files with quickstart backend.",
"scripts": {},
"dependencies": {
"@opentdf/cli": "file:../../../cli/opentdf-cli-0.5.0.tgz"
"@opentdf/cli": "file:../../../cli/opentdf-cli-1.0.0.tgz"
}
}
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@

version=0.5.0
version=1.0.0
pkgs=lib cli web-app

.PHONY: all audit license-check lint test ci i start format clean
Expand Down
12 changes: 6 additions & 6 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/cli",
"version": "0.5.0",
"version": "1.0.0",
"description": "Node based CLI for opentdf",
"repository": {
"type": "git",
Expand Down Expand Up @@ -49,7 +49,7 @@
"typescript": "^5.0.4"
},
"dependencies": {
"@opentdf/client": "file:../lib/opentdf-client-0.5.0.tgz",
"@opentdf/client": "file:../lib/opentdf-client-1.0.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 @@
{
"name": "@opentdf/client",
"version": "0.5.0",
"version": "1.0.0",
"description": "Access and generate tdf protected content",
"homepage": "https://github.com/opentdf/client-web",
"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/client` package
*/
export const version = '0.5.0';
export const version = '1.0.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,4 +1,4 @@
import { inBrowser } from './utils/index.js';

export const version = '0.5.0';
export const version = '1.0.0';
export const clientType = inBrowser() ? 'tdf3-js-client' : 'tdf3-js-node';
12 changes: 6 additions & 6 deletions web-app/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 web-app/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "web-app",
"version": "0.5.0",
"version": "1.0.0",
"license": "BSD-3-Clause-Clear",
"type": "module",
"scripts": {
Expand All @@ -15,7 +15,7 @@
"test:ui": "vite build && vitest --ui"
},
"dependencies": {
"@opentdf/client": "file:../lib/opentdf-client-0.5.0.tgz",
"@opentdf/client": "file:../lib/opentdf-client-1.0.0.tgz",
"clsx": "^1.2.1",
"native-file-system-adapter": "^3.0.0",
"react": "^18.2.0",
Expand Down

0 comments on commit aaf87c5

Please sign in to comment.