Skip to content

Commit

Permalink
chore: bump version
Browse files Browse the repository at this point in the history
  • Loading branch information
oesgalha committed Oct 18, 2021
1 parent 2fb777d commit de4bc6b
Show file tree
Hide file tree
Showing 11 changed files with 11 additions and 11 deletions.
@@ -1,4 +1,4 @@
# Generated with pipelinit 0.1.0
# Generated with pipelinit 0.2.0
# https://pipelinit.com/
name: Format JavaScript
on:
Expand Down
@@ -1,4 +1,4 @@
# Generated with pipelinit 0.1.0
# Generated with pipelinit 0.2.0
# https://pipelinit.com/
name: Lint JavaScript
on:
Expand Down
@@ -1,4 +1,4 @@
# Generated with pipelinit 0.1.0
# Generated with pipelinit 0.2.0
# https://pipelinit.com/
name: Format Python
on:
Expand Down
@@ -1,4 +1,4 @@
# Generated with pipelinit 0.1.0
# Generated with pipelinit 0.2.0
# https://pipelinit.com/
name: Lint Python
on:
Expand Down
@@ -1,4 +1,4 @@
# Generated with pipelinit 0.1.0
# Generated with pipelinit 0.2.0
# https://pipelinit.com/
name: SAST
on:
Expand Down
@@ -1,4 +1,4 @@
# Generated with pipelinit 0.1.0
# Generated with pipelinit 0.2.0
# https://pipelinit.com/
name: Format Python
on:
Expand Down
@@ -1,4 +1,4 @@
# Generated with pipelinit 0.1.0
# Generated with pipelinit 0.2.0
# https://pipelinit.com/
name: Lint Python
on:
Expand Down
@@ -1,4 +1,4 @@
# Generated with pipelinit 0.1.0
# Generated with pipelinit 0.2.0
# https://pipelinit.com/
name: SAST
on:
Expand Down
2 changes: 1 addition & 1 deletion cli/tests/version_test.ts
Expand Up @@ -3,6 +3,6 @@ import { output, test } from "./helpers.ts";

test({ args: ["--version"] }, async (proc) => {
const [stdout, _stderr, { code }] = await output(proc);
assertEquals(stdout, "0.1.0");
assertEquals(stdout, "0.2.0");
assertEquals(code, 0);
});
2 changes: 1 addition & 1 deletion core/package.json
@@ -1,6 +1,6 @@
{
"name": "@pipelinit/core",
"version": "0.1.0",
"version": "0.2.0",
"description": "Stack detection and CI configuration writing from pipelinit",
"exports": "./dist/mod.js",
"types": "./dist/mod.d.ts",
Expand Down
2 changes: 1 addition & 1 deletion core/version.ts
@@ -1 +1 @@
export const PIPELINIT_VERSION = "0.1.0";
export const PIPELINIT_VERSION = "0.2.0";

0 comments on commit de4bc6b

Please sign in to comment.