Skip to content

Commit

Permalink
v8.3.0
Browse files Browse the repository at this point in the history
  • Loading branch information
sorenlouv committed Mar 25, 2022
1 parent b059e55 commit 8a4d348
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
"branches",
"branching"
],
"version": "8.3.0-beta.1",
"version": "8.3.0",
"main": "./dist/entrypoint.module.js",
"types": "dist/entrypoint.module.d.ts",
"bin": {
Expand Down
2 changes: 1 addition & 1 deletion src/lib/git.ts
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ export async function cloneRepo(
subprocess.on('error', (err) => reject(err));

subprocess.stderr.on('data', (data: string) => {
logger.verbose(data);
logger.verbose(`Cloning repo: ${data.toString()}`);
const [, objectReceiveProgress]: RegExpMatchArray =
data.toString().match(/^Receiving objects:\s+(\d+)%/) || [];

Expand Down
2 changes: 1 addition & 1 deletion src/utils/packageVersion.ts
Original file line number Diff line number Diff line change
@@ -1 +1 @@
export const PACKAGE_VERSION = '8.3.0-beta.1';
export const PACKAGE_VERSION = '8.3.0';

0 comments on commit 8a4d348

Please sign in to comment.