From 48fa0c3bb51d63ab5bf251e100527d0f717198b0 Mon Sep 17 00:00:00 2001 From: Michael Borisov Date: Sun, 25 Aug 2024 21:15:43 +0200 Subject: [PATCH] 0.1.23 --- .github/workflows/publish.yaml | 6 +++--- CHANGELOG.md | 4 ++++ environment.yml | 2 +- package-lock.json | 4 ++-- package.json | 2 +- 5 files changed, 11 insertions(+), 7 deletions(-) diff --git a/.github/workflows/publish.yaml b/.github/workflows/publish.yaml index ce66ada..1194aac 100644 --- a/.github/workflows/publish.yaml +++ b/.github/workflows/publish.yaml @@ -19,7 +19,7 @@ jobs: - uses: actions/checkout@master - uses: actions/setup-node@master with: - node-version: 16 + node-version: 20 - run: npm ci - run: npm run lint - uses: GabrielBB/xvfb-action@master @@ -41,12 +41,12 @@ jobs: - uses: actions/checkout@master - uses: actions/setup-node@master with: - node-version: 16 + node-version: 20 - run: npm ci - run: npm run compile - uses: coverallsapp/github-action@master with: github-token: ${{ secrets.github_token }} parallel-finished: true - - run: npm i -g vsce + - run: npm i -g @vscode/vsce - run: vsce publish -p ${{ secrets.PUBLISHER_TOKEN }} diff --git a/CHANGELOG.md b/CHANGELOG.md index b2a71df..218ee85 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,6 +6,10 @@ Bug-fixes within the same version aren't needed ## Master --> +### 0.1.23 + +* Fix error when missing name in the environment file + ### 0.1.21 * Limit extension activation events diff --git a/environment.yml b/environment.yml index c6f8089..b2120c2 100644 --- a/environment.yml +++ b/environment.yml @@ -7,4 +7,4 @@ channels: - conda-forge dependencies: - - nodejs=16 + - nodejs=20 diff --git a/package-lock.json b/package-lock.json index a9f79bf..4e0c03b 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "vscode-micromamba", - "version": "0.1.22", + "version": "0.1.23", "lockfileVersion": 2, "requires": true, "packages": { "": { "name": "vscode-micromamba", - "version": "0.1.22", + "version": "0.1.23", "dependencies": { "follow-redirects": "^1.15.6", "fs-extra": "^11.1.1", diff --git a/package.json b/package.json index 091a0e7..398bf8f 100644 --- a/package.json +++ b/package.json @@ -2,7 +2,7 @@ "name": "vscode-micromamba", "displayName": "Micromamba", "description": "Make conda environments with micromamba.", - "version": "0.1.22", + "version": "0.1.23", "publisher": "corker", "engines": { "vscode": "^1.82.0"