Skip to content

Commit

Permalink
get ready to release v0.3.0
Browse files Browse the repository at this point in the history
  • Loading branch information
JairusSW committed Jul 17, 2024
1 parent c82c916 commit de404a7
Show file tree
Hide file tree
Showing 8 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
| _ || __| ___|_ _|| __|| __||_ _|
| ||__ ||___| | | | __||__ | | |
|__|__||_____| |_| |_____||_____| |_|
v0.2.1
v0.3.0
</pre>
</h5>

Expand Down
2 changes: 1 addition & 1 deletion bin/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -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);
Expand Down
2 changes: 1 addition & 1 deletion bin/run.js
Original file line number Diff line number Diff line change
Expand Up @@ -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])
Expand Down
2 changes: 1 addition & 1 deletion cli/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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);
Expand Down
2 changes: 1 addition & 1 deletion cli/run.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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)) {
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -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",
Expand Down
2 changes: 1 addition & 1 deletion reporters/log/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ class LogReporter {
),
);
out += rainbow.dimMk(
"\n------------------- v0.2.1 -------------------\n\n",
"\n------------------- v0.3.0 -------------------\n\n",
);

// @ts-ignore
Expand Down
2 changes: 1 addition & 1 deletion transform/package.json
Original file line number Diff line number Diff line change
@@ -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",
Expand Down

0 comments on commit de404a7

Please sign in to comment.