diff --git a/CHANGELOG.md b/CHANGELOG.md index a7ddeffe..77b3f64d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,7 +1,16 @@ # Change Log +## 1.0.1 - 24 November 2021 + +### Added +- Bump the CLI to the latest. [#44](https://github.com/getlocalci/local-ci/pull/44/) + +### Fixed +- Correct links to macOS. [#44](https://github.com/getlocalci/local-ci/pull/44/) + ## 1.0.0 - 22 November 2021 +### Added - Allow running jobs in VS Code, with a TreeView UI - Open a terminal to show the running job - Open a debugging terminal for Bash access to the job diff --git a/README.md b/README.md index 11e8db53..8e01f6b4 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,6 @@ [![2 day free preview](https://img.shields.io/badge/trial-2%20day-orange)](https://getlocalci.com) [![Buy license key](https://img.shields.io/badge/%24-paid-orange)](https://getlocalci.com) -[![Platform: macOS](https://img.shields.io/badge/platform-macOS-yellow)](https://getlocalci.com) +[![Platform: macOS](https://img.shields.io/badge/platform-macOS-yellow)](https://en.wikipedia.org/wiki/MacOS) [![Requires CircleCI®](https://img.shields.io/badge/requires-CirlcleCI%C2%AE-yellow)](https://circleci.com) Debug entire CircleCI® workflows locally, with Bash access and persistence between jobs. @@ -17,7 +17,7 @@ All in your local, no pushing commits and waiting. Not affiliated with CircleCI Get Bash access to the running job by clicking 'Local CI debugging': -![Bash in a running job](https://user-images.githubusercontent.com/4063887/142659294-6d6dce2b-1598-4b33-8aa8-f91c046af99f.gif) +![Bash in a running job](https://user-images.githubusercontent.com/4063887/143146648-2eb7ed7c-b257-420a-a612-2ba319eb82c4.gif) When the job exits, you'll still have Bash access to the job. @@ -37,7 +37,7 @@ CircleCI® is a registered trademark of Circle Internet Services, Inc. ## License -Local CI requires a [license](https://getlocalci.com/buy/) for $70 per month. +Local CI requires a [license](https://getlocalci.com/pricing/) for $70 per month. But first you'll get a free 2-day preview, no sign-up or credit card needed. diff --git a/node/binary.js b/node/binary.js index dcb7e2c4..84a8d545 100644 --- a/node/binary.js +++ b/node/binary.js @@ -15,12 +15,12 @@ const supportedPlatforms = [ { type: "Linux", architecture: "x64", - url: "https://github.com/CircleCI-Public/circleci-cli/releases/download/v0.1.16192/circleci-cli_0.1.16192_linux_amd64.tar.gz", + url: "https://github.com/CircleCI-Public/circleci-cli/releases/download/v0.1.16277/circleci-cli_0.1.16277_linux_amd64.tar.gz", }, { type: "Darwin", architecture: "x64", - url: "https://github.com/CircleCI-Public/circleci-cli/releases/download/v0.1.16192/circleci-cli_0.1.16192_darwin_amd64.tar.gz", + url: "https://github.com/CircleCI-Public/circleci-cli/releases/download/v0.1.16277/circleci-cli_0.1.16277_darwin_amd64.tar.gz", }, ]; diff --git a/package-lock.json b/package-lock.json index e9c15022..370ef098 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "local-ci", - "version": "1.0.0", + "version": "1.0.1", "lockfileVersion": 2, "requires": true, "packages": { "": { "name": "local-ci", - "version": "1.0.0", + "version": "1.0.1", "hasInstallScript": true, "license": "GPL-2.0-or-later", "os": [ @@ -42,7 +42,7 @@ "ts-loader": "^9.2.2", "typescript": "^4.3.2", "util": "^0.12.4", - "vsce": "^2.3.0", + "vsce": "^2.5.0", "vscode-test": "^1.5.2", "webpack": "^5.38.1", "webpack-cli": "^4.7.0" @@ -4809,9 +4809,9 @@ "dev": true }, "node_modules/vsce": { - "version": "2.3.0", - "resolved": "https://registry.npmjs.org/vsce/-/vsce-2.3.0.tgz", - "integrity": "sha512-nmbczr1rC+lRikX1NYMoTFX6CqPlfk11f7LbRgdjpa6zkLNndlTtnpvOawj7NYkw5jmy+5bGHMGt4DIimZXZmg==", + "version": "2.5.0", + "resolved": "https://registry.npmjs.org/vsce/-/vsce-2.5.0.tgz", + "integrity": "sha512-KgsCX/C5nEUHXGrXac9KOGUXsWRlMEyoZZX0wJsagE4gSieaaHVAHxJu7Vh63a1UyRf6lQcNXmyOzRCYMmrF2Q==", "dev": true, "dependencies": { "azure-devops-node-api": "^11.0.1", @@ -9109,9 +9109,9 @@ "dev": true }, "vsce": { - "version": "2.3.0", - "resolved": "https://registry.npmjs.org/vsce/-/vsce-2.3.0.tgz", - "integrity": "sha512-nmbczr1rC+lRikX1NYMoTFX6CqPlfk11f7LbRgdjpa6zkLNndlTtnpvOawj7NYkw5jmy+5bGHMGt4DIimZXZmg==", + "version": "2.5.0", + "resolved": "https://registry.npmjs.org/vsce/-/vsce-2.5.0.tgz", + "integrity": "sha512-KgsCX/C5nEUHXGrXac9KOGUXsWRlMEyoZZX0wJsagE4gSieaaHVAHxJu7Vh63a1UyRf6lQcNXmyOzRCYMmrF2Q==", "dev": true, "requires": { "azure-devops-node-api": "^11.0.1", diff --git a/package.json b/package.json index 37744308..0da17ef4 100644 --- a/package.json +++ b/package.json @@ -2,7 +2,7 @@ "name": "local-ci", "displayName": "Local CI", "description": "Debug CircleCI® workflows locally, with Bash access during and after. Free preview, then paid.", - "version": "1.0.0", + "version": "1.0.1", "publisher": "LocalCI", "contributors": [ "Ryan Kienstra" @@ -31,7 +31,7 @@ "Programming Languages", "Testing" ], - "tags": [ + "keywords": [ "debug", "debuggers", "devops", @@ -39,9 +39,7 @@ "cicd", "CI/CD", "CircleCI", - "continuous integration", - "pipeline", - "YAML" + "continuous integration" ], "activationEvents": [ "localCiJobs.selectRepo", @@ -229,12 +227,12 @@ }, { "url": "https://img.shields.io/badge/%24-paid-orange", - "href": "https://getlocalci.com/buy", + "href": "https://getlocalci.com/pricing", "description": "Buy license key" }, { "url": "https://img.shields.io/badge/platform-macOS-yellow", - "href": "https://getlocalci.come", + "href": "https://en.wikipedia.org/wiki/MacOS", "description": "Platform: macOS" }, { @@ -287,7 +285,7 @@ "ts-loader": "^9.2.2", "typescript": "^4.3.2", "util": "^0.12.4", - "vsce": "^2.3.0", + "vsce": "^2.5.0", "vscode-test": "^1.5.2", "webpack": "^5.38.1", "webpack-cli": "^4.7.0" diff --git a/src/constants/index.ts b/src/constants/index.ts index 3ad90357..80195499 100644 --- a/src/constants/index.ts +++ b/src/constants/index.ts @@ -32,7 +32,7 @@ export const GET_PICARD_CONTAINER_FUNCTION = `get_picard_container() { fi done }`; -export const GET_LICENSE_KEY_URL = 'https://getlocalci.com/buy'; +export const GET_LICENSE_KEY_URL = 'https://getlocalci.com/pricing'; export const HELP_URL = 'https://github.com/getlocalci/local-ci/discussions'; export const JOB_TREE_VIEW_ID = 'localCiJobs'; export const LICENSE_ITEM_ID = 43;