From 73b9a8098aade40363e43af145303c23542ccb97 Mon Sep 17 00:00:00 2001 From: goanpeca Date: Sun, 29 Nov 2020 15:20:02 -0500 Subject: [PATCH] Update changelo, prepare release v2.0.1 --- .github/workflows/caching-example.yml | 4 +++- .github/workflows/example-1.yml | 4 +++- .github/workflows/example-2.yml | 4 +++- .github/workflows/example-3.yml | 4 +++- .github/workflows/example-4.yml | 4 +++- .github/workflows/example-5.yml | 4 +++- .github/workflows/example-6.yml | 4 +++- .github/workflows/example-7.yml | 4 +++- .github/workflows/example-8.yml | 4 +++- .github/workflows/lint.yml | 4 +++- CHANGELOG.md | 3 ++- dist/setup/index.js | 2 +- package-lock.json | 2 +- package.json | 2 +- 14 files changed, 35 insertions(+), 14 deletions(-) diff --git a/.github/workflows/caching-example.yml b/.github/workflows/caching-example.yml index e22e5d5b..8df889a5 100644 --- a/.github/workflows/caching-example.yml +++ b/.github/workflows/caching-example.yml @@ -14,7 +14,9 @@ on: jobs: caching-example: # prevent cronjobs from running on forks - if: (github.event_name == 'schedule' && github.repository == 'conda-incubator/setup-miniconda') || (github.event_name != 'schedule') + if: + (github.event_name == 'schedule' && github.repository == + 'conda-incubator/setup-miniconda') || (github.event_name != 'schedule') name: Caching runs-on: "ubuntu-latest" steps: diff --git a/.github/workflows/example-1.yml b/.github/workflows/example-1.yml index d950f405..0de933a7 100644 --- a/.github/workflows/example-1.yml +++ b/.github/workflows/example-1.yml @@ -14,7 +14,9 @@ on: jobs: example-1: # prevent cronjobs from running on forks - if: (github.event_name == 'schedule' && github.repository == 'conda-incubator/setup-miniconda') || (github.event_name != 'schedule') + if: + (github.event_name == 'schedule' && github.repository == + 'conda-incubator/setup-miniconda') || (github.event_name != 'schedule') name: Ex1 (${{ matrix.python-version }}, ${{ matrix.os }}) runs-on: ${{ matrix.os }} strategy: diff --git a/.github/workflows/example-2.yml b/.github/workflows/example-2.yml index 9bb9d96c..659107c6 100644 --- a/.github/workflows/example-2.yml +++ b/.github/workflows/example-2.yml @@ -14,7 +14,9 @@ on: jobs: example-2-linux: # prevent cronjobs from running on forks - if: (github.event_name == 'schedule' && github.repository == 'conda-incubator/setup-miniconda') || (github.event_name != 'schedule') + if: + (github.event_name == 'schedule' && github.repository == + 'conda-incubator/setup-miniconda') || (github.event_name != 'schedule') name: Ex2 Linux runs-on: "ubuntu-latest" steps: diff --git a/.github/workflows/example-3.yml b/.github/workflows/example-3.yml index 5f3a804d..a73f7fe1 100644 --- a/.github/workflows/example-3.yml +++ b/.github/workflows/example-3.yml @@ -14,7 +14,9 @@ on: jobs: example-3: # prevent cronjobs from running on forks - if: (github.event_name == 'schedule' && github.repository == 'conda-incubator/setup-miniconda') || (github.event_name != 'schedule') + if: + (github.event_name == 'schedule' && github.repository == + 'conda-incubator/setup-miniconda') || (github.event_name != 'schedule') name: Ex3 Linux runs-on: "ubuntu-latest" defaults: diff --git a/.github/workflows/example-4.yml b/.github/workflows/example-4.yml index 350b1778..10507e8e 100644 --- a/.github/workflows/example-4.yml +++ b/.github/workflows/example-4.yml @@ -14,7 +14,9 @@ on: jobs: example-4: # prevent cronjobs from running on forks - if: (github.event_name == 'schedule' && github.repository == 'conda-incubator/setup-miniconda') || (github.event_name != 'schedule') + if: + (github.event_name == 'schedule' && github.repository == + 'conda-incubator/setup-miniconda') || (github.event_name != 'schedule') name: Ex4 Linux runs-on: "ubuntu-latest" defaults: diff --git a/.github/workflows/example-5.yml b/.github/workflows/example-5.yml index 0b04cebc..b5ccd5de 100644 --- a/.github/workflows/example-5.yml +++ b/.github/workflows/example-5.yml @@ -14,7 +14,9 @@ on: jobs: example-5-linux: # prevent cronjobs from running on forks - if: (github.event_name == 'schedule' && github.repository == 'conda-incubator/setup-miniconda') || (github.event_name != 'schedule') + if: + (github.event_name == 'schedule' && github.repository == + 'conda-incubator/setup-miniconda') || (github.event_name != 'schedule') name: Ex5 PyPy Linux Local runs-on: "ubuntu-latest" env: diff --git a/.github/workflows/example-6.yml b/.github/workflows/example-6.yml index 4325ad7c..bea7b048 100644 --- a/.github/workflows/example-6.yml +++ b/.github/workflows/example-6.yml @@ -14,7 +14,9 @@ on: jobs: example-6: # prevent cronjobs from running on forks - if: (github.event_name == 'schedule' && github.repository == 'conda-incubator/setup-miniconda') || (github.event_name != 'schedule') + if: + (github.event_name == 'schedule' && github.repository == + 'conda-incubator/setup-miniconda') || (github.event_name != 'schedule') name: Ex6 (${{ matrix.os }}) runs-on: ${{ matrix.os }} strategy: diff --git a/.github/workflows/example-7.yml b/.github/workflows/example-7.yml index b5fd54c7..282a94f9 100644 --- a/.github/workflows/example-7.yml +++ b/.github/workflows/example-7.yml @@ -14,7 +14,9 @@ on: jobs: example-7: # prevent cronjobs from running on forks - if: (github.event_name == 'schedule' && github.repository == 'conda-incubator/setup-miniconda') || (github.event_name != 'schedule') + if: + (github.event_name == 'schedule' && github.repository == + 'conda-incubator/setup-miniconda') || (github.event_name != 'schedule') name: Ex7 Explicit runs-on: ${{ matrix.os }} defaults: diff --git a/.github/workflows/example-8.yml b/.github/workflows/example-8.yml index 65b8e2c7..35462dc0 100644 --- a/.github/workflows/example-8.yml +++ b/.github/workflows/example-8.yml @@ -14,7 +14,9 @@ on: jobs: example-8: # prevent cronjobs from running on forks - if: (github.event_name == 'schedule' && github.repository == 'conda-incubator/setup-miniconda') || (github.event_name != 'schedule') + if: + (github.event_name == 'schedule' && github.repository == + 'conda-incubator/setup-miniconda') || (github.event_name != 'schedule') name: Ex8 (${{ matrix.python-version }}, ${{ matrix.os }}) runs-on: ${{ matrix.os }} strategy: diff --git a/.github/workflows/lint.yml b/.github/workflows/lint.yml index 60b04e08..0f3eee9d 100644 --- a/.github/workflows/lint.yml +++ b/.github/workflows/lint.yml @@ -14,7 +14,9 @@ on: jobs: lint: # prevent cronjobs from running on forks - if: (github.event_name == 'schedule' && github.repository == 'conda-incubator/setup-miniconda') || (github.event_name != 'schedule') + if: + (github.event_name == 'schedule' && github.repository == + 'conda-incubator/setup-miniconda') || (github.event_name != 'schedule') name: Lint runs-on: "ubuntu-latest" defaults: diff --git a/CHANGELOG.md b/CHANGELOG.md index 22b3f577..40c73840 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,6 @@ # CHANGELOG -## [v2.1.0][] (Unreleased) +## [v2.0.1][] (2020-11-29) ## Fixes @@ -10,6 +10,7 @@ - [#100][] fixes `mamba` not being available on Windows if using a `bash` shell [#59][]. +[v2.0.0]: https://github.com/conda-incubator/setup-miniconda/releases/tag/v2.0.1 [#59]: https://github.com/conda-incubator/setup-miniconda/pull/59 [#93]: https://github.com/conda-incubator/setup-miniconda/pull/93 [#94]: https://github.com/conda-incubator/setup-miniconda/pull/94 diff --git a/dist/setup/index.js b/dist/setup/index.js index 39765b8d..6439835f 100644 --- a/dist/setup/index.js +++ b/dist/setup/index.js @@ -29298,7 +29298,7 @@ module.exports = defaults; /* 771 */ /***/ (function(module) { -module.exports = {"_args":[["cheerio@1.0.0-rc.3","/home/jaime/devel/py/jaimergp/setup-miniconda"]],"_from":"cheerio@1.0.0-rc.3","_id":"cheerio@1.0.0-rc.3","_inBundle":false,"_integrity":"sha512-0td5ijfUPuubwLUu0OBoe98gZj8C/AA+RW3v67GPlGOrvxWjZmBXiBCRU+I8VEiNyJzjth40POfHiz2RB3gImA==","_location":"/cheerio","_phantomChildren":{},"_requested":{"type":"version","registry":true,"raw":"cheerio@1.0.0-rc.3","name":"cheerio","escapedName":"cheerio","rawSpec":"1.0.0-rc.3","saveSpec":null,"fetchSpec":"1.0.0-rc.3"},"_requiredBy":["/get-hrefs"],"_resolved":"https://registry.npmjs.org/cheerio/-/cheerio-1.0.0-rc.3.tgz","_spec":"1.0.0-rc.3","_where":"/home/jaime/devel/py/jaimergp/setup-miniconda","author":{"name":"Matt Mueller","email":"mattmuelle@gmail.com","url":"mat.io"},"bugs":{"url":"https://github.com/cheeriojs/cheerio/issues"},"dependencies":{"css-select":"~1.2.0","dom-serializer":"~0.1.1","entities":"~1.1.1","htmlparser2":"^3.9.1","lodash":"^4.15.0","parse5":"^3.0.1"},"description":"Tiny, fast, and elegant implementation of core jQuery designed specifically for the server","devDependencies":{"benchmark":"^2.1.0","coveralls":"^2.11.9","expect.js":"~0.3.1","istanbul":"^0.4.3","jquery":"^3.0.0","jsdom":"^9.2.1","jshint":"^2.9.2","mocha":"^3.1.2","xyz":"~1.1.0"},"engines":{"node":">= 0.6"},"files":["index.js","lib"],"homepage":"https://github.com/cheeriojs/cheerio#readme","keywords":["htmlparser","jquery","selector","scraper","parser","html"],"license":"MIT","main":"./index.js","name":"cheerio","repository":{"type":"git","url":"git://github.com/cheeriojs/cheerio.git"},"scripts":{"test":"make test"},"version":"1.0.0-rc.3"}; +module.exports = {"_args":[["cheerio@1.0.0-rc.3","/Users/goanpeca/Dropbox (Personal)/develop/conda-incubator/setup-miniconda"]],"_from":"cheerio@1.0.0-rc.3","_id":"cheerio@1.0.0-rc.3","_inBundle":false,"_integrity":"sha512-0td5ijfUPuubwLUu0OBoe98gZj8C/AA+RW3v67GPlGOrvxWjZmBXiBCRU+I8VEiNyJzjth40POfHiz2RB3gImA==","_location":"/cheerio","_phantomChildren":{},"_requested":{"type":"version","registry":true,"raw":"cheerio@1.0.0-rc.3","name":"cheerio","escapedName":"cheerio","rawSpec":"1.0.0-rc.3","saveSpec":null,"fetchSpec":"1.0.0-rc.3"},"_requiredBy":["/get-hrefs"],"_resolved":"https://registry.npmjs.org/cheerio/-/cheerio-1.0.0-rc.3.tgz","_spec":"1.0.0-rc.3","_where":"/Users/goanpeca/Dropbox (Personal)/develop/conda-incubator/setup-miniconda","author":{"name":"Matt Mueller","email":"mattmuelle@gmail.com","url":"mat.io"},"bugs":{"url":"https://github.com/cheeriojs/cheerio/issues"},"dependencies":{"css-select":"~1.2.0","dom-serializer":"~0.1.1","entities":"~1.1.1","htmlparser2":"^3.9.1","lodash":"^4.15.0","parse5":"^3.0.1"},"description":"Tiny, fast, and elegant implementation of core jQuery designed specifically for the server","devDependencies":{"benchmark":"^2.1.0","coveralls":"^2.11.9","expect.js":"~0.3.1","istanbul":"^0.4.3","jquery":"^3.0.0","jsdom":"^9.2.1","jshint":"^2.9.2","mocha":"^3.1.2","xyz":"~1.1.0"},"engines":{"node":">= 0.6"},"files":["index.js","lib"],"homepage":"https://github.com/cheeriojs/cheerio#readme","keywords":["htmlparser","jquery","selector","scraper","parser","html"],"license":"MIT","main":"./index.js","name":"cheerio","repository":{"type":"git","url":"git://github.com/cheeriojs/cheerio.git"},"scripts":{"test":"make test"},"version":"1.0.0-rc.3"}; /***/ }), /* 772 */ diff --git a/package-lock.json b/package-lock.json index 3c3d1739..b22efdb9 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,6 +1,6 @@ { "name": "action-setup-conda", - "version": "2.0.0", + "version": "2.0.1", "lockfileVersion": 1, "requires": true, "dependencies": { diff --git a/package.json b/package.json index 290a1393..88301404 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "action-setup-conda", - "version": "2.0.0", + "version": "2.0.1", "description": "GitHub action for setting up conda from default or custom installers", "main": "lib/main.js", "scripts": {