Skip to content

Commit

Permalink
chore: bump version to 0.3.0
Browse files Browse the repository at this point in the history
  • Loading branch information
hougesen committed Apr 1, 2023
1 parent 6b0ceec commit 8eb89b8
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions 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 package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "json2struct",
"version": "0.2.0",
"description": "Tool for converting JSON to TypeScript & Python interfaces",
"version": "0.3.0",
"description": "Easily translate JSON into type definitions. Currently supporting TypeScript and Python",
"main": "dist/index.js",
"bin": {
"json2struct": "./dist/index.js"
Expand Down
4 changes: 2 additions & 2 deletions src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -25,8 +25,8 @@ const program = new Command();

program
.name('json2struct')
.description('CLI for converting JSON to TypeScript & Python interfaces')
.version('0.2.0')
.description('Easily translate JSON into type definitions')
.version('0.3.0')
.configureOutput({
writeOut: (str) => process.stdout.write(`[OUT] ${str}`),
writeErr: (str) => process.stdout.write(`[ERR] ${str}`),
Expand Down

0 comments on commit 8eb89b8

Please sign in to comment.