diff --git a/README.md b/README.md index 08b97b7..770e53f 100644 --- a/README.md +++ b/README.md @@ -3,7 +3,7 @@ | _ || __| ___|_ _|| __|| __||_ _| | ||__ ||___| | | | __||__ | | | |__|__||_____| |_| |_____||_____| |_| -v0.2.1 +v0.3.0 diff --git a/bin/index.js b/bin/index.js index 7bed525..010fa54 100755 --- a/bin/index.js +++ b/bin/index.js @@ -7,7 +7,7 @@ const _args = process.argv.slice(2); const flags = []; const args = []; const COMMANDS = ["run", "build", "test", "init"]; -const version = "0.2.1"; +const version = "0.3.0"; for (const arg of _args) { if (arg.startsWith("-")) flags.push(arg); diff --git a/bin/run.js b/bin/run.js index d879b2c..3d3fc1c 100644 --- a/bin/run.js +++ b/bin/run.js @@ -22,7 +22,7 @@ export async function run() { console.log(chalk.bold.blueBright(`| _ || __| ___|_ _|| __|| __||_ _|`)); console.log(chalk.bold.blueBright(`| ||__ ||___| | | | __||__ | | | `)); console.log(chalk.bold.blueBright(`|__|__||_____| |_| |_____||_____| |_| `)); - console.log(chalk.dim("\n------------------- v0.2.1 -------------------\n")); + console.log(chalk.dim("\n------------------- v0.3.0 -------------------\n")); } for (const plugin of Object.keys(config.plugins)) { if (!config.plugins[plugin]) diff --git a/cli/index.ts b/cli/index.ts index 453a8d1..e19fe80 100644 --- a/cli/index.ts +++ b/cli/index.ts @@ -11,7 +11,7 @@ const args: string[] = []; const COMMANDS: string[] = ["run", "build", "test", "init"]; -const version = "0.2.1"; +const version = "0.3.0"; for (const arg of _args) { if (arg.startsWith("-")) flags.push(arg); diff --git a/cli/run.ts b/cli/run.ts index 028b39d..75bf246 100644 --- a/cli/run.ts +++ b/cli/run.ts @@ -31,7 +31,7 @@ export async function run() { console.log(chalk.bold.blueBright(`| _ || __| ___|_ _|| __|| __||_ _|`)); console.log(chalk.bold.blueBright(`| ||__ ||___| | | | __||__ | | | `)); console.log(chalk.bold.blueBright(`|__|__||_____| |_| |_____||_____| |_| `)); - console.log(chalk.dim("\n------------------- v0.2.1 -------------------\n")); + console.log(chalk.dim("\n------------------- v0.3.0 -------------------\n")); } for (const plugin of Object.keys(config.plugins)) { diff --git a/package.json b/package.json index 44a8a4d..2a25e3d 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "as-test", - "version": "0.2.1", + "version": "0.3.0", "description": "Testing framework for AssemblyScript. Compatible with WASI or Bindings ", "types": "assembly/index.ts", "author": "Jairus Tanaka", diff --git a/reporters/log/index.ts b/reporters/log/index.ts index 7e7feac..ef6c6da 100644 --- a/reporters/log/index.ts +++ b/reporters/log/index.ts @@ -42,7 +42,7 @@ class LogReporter { ), ); out += rainbow.dimMk( - "\n------------------- v0.2.1 -------------------\n\n", + "\n------------------- v0.3.0 -------------------\n\n", ); // @ts-ignore diff --git a/transform/package.json b/transform/package.json index e6692be..ef14faa 100644 --- a/transform/package.json +++ b/transform/package.json @@ -1,6 +1,6 @@ { "name": "@as-test/transform", - "version": "0.2.1", + "version": "0.3.0", "description": "Testing framework for AssemblyScript. Compatible with WASI or Bindings ", "main": "./lib/index.js", "author": "Jairus Tanaka",