diff --git a/dist/index.js b/dist/index.js index f6d586c..13c047f 100755 --- a/dist/index.js +++ b/dist/index.js @@ -9,7 +9,7 @@ import { Jump, List } from "./vc/branching.js"; const program = new Command(); program .name("statik") - .version("1.1.0-alpha") + .version("1.1.2-alpha") .description(figlet.textSync("Statik") + "\nAn IPFS based version control system with static file hosting features"); program.command("init ").description("Initialize a new Statik repository"); program.command("add [file_path]").description("Add a file to the Statik repository"); diff --git a/package-lock.json b/package-lock.json index b16493a..855096a 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "statikvc", - "version": "1.0.5-alpha", + "version": "1.1.2-alpha", "lockfileVersion": 2, "requires": true, "packages": { "": { "name": "statikvc", - "version": "1.0.5-alpha", + "version": "1.1.2-alpha", "license": "ISC", "dependencies": { "commander": "^11.0.0", diff --git a/package.json b/package.json index 8bc61ac..3834a96 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "statikvc", - "version": "1.1.0-alpha", + "version": "1.1.2-alpha", "description": "An IPFS based version control system with static file hosting features. Basic functions like repo initiation, staging, committing, and logging have been implemented. (Under active development)", "exports": "./dist/index.js", "scripts": { diff --git a/src/index.ts b/src/index.ts index 60f6da1..1c31de6 100644 --- a/src/index.ts +++ b/src/index.ts @@ -10,7 +10,7 @@ import { Jump, List } from "./vc/branching.js"; const program = new Command(); program .name("statik") - .version("1.1.0-alpha") + .version("1.1.2-alpha") .description(figlet.textSync("Statik")+"\nAn IPFS based version control system with static file hosting features") program.command("init ").description("Initialize a new Statik repository") program.command("add [file_path]").description("Add a file to the Statik repository")