Skip to content

Commit 8eb89b8

Browse files
committed
chore: bump version to 0.3.0
1 parent 6b0ceec commit 8eb89b8

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

package-lock.json

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "json2struct",
3-
"version": "0.2.0",
4-
"description": "Tool for converting JSON to TypeScript & Python interfaces",
3+
"version": "0.3.0",
4+
"description": "Easily translate JSON into type definitions. Currently supporting TypeScript and Python",
55
"main": "dist/index.js",
66
"bin": {
77
"json2struct": "./dist/index.js"

src/index.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,8 +25,8 @@ const program = new Command();
2525

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

0 commit comments

Comments
 (0)