From ff85b7ae0b7e1f7b4ea63b8154e223552393803a Mon Sep 17 00:00:00 2001 From: Manuel Lopez Date: Thu, 2 Feb 2023 03:51:36 +0000 Subject: [PATCH] (hotfix) 0.12.1 --- CHANGELOG.md | 7 ++++++- m/m.json | 2 +- m/scripts/publish.sh | 4 ++-- 3 files changed, 9 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index af5289e1..a6e74429 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -8,6 +8,10 @@ The project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html) ## [Unreleased] +## [0.12.1] - February 02, 2023 + +- skip release to npmjs - previous job did not publish to pypi. + ## [0.12.0] - February 01, 2023 - Using a devcontainer for local development and pipelines. @@ -157,7 +161,8 @@ prs and the latest on the `master` branch. - As a library, it facilities the creation of clis similar to m. -[unreleased]: https://github.com/jmlopez-rod/m/compare/0.12.0...HEAD +[unreleased]: https://github.com/jmlopez-rod/m/compare/0.12.1...HEAD +[0.12.1]: https://github.com/jmlopez-rod/m/compare/0.12.0...0.12.1 [0.12.0]: https://github.com/jmlopez-rod/m/compare/0.11.2...0.12.0 [0.11.2]: https://github.com/jmlopez-rod/m/compare/0.11.1...0.11.2 [0.11.1]: https://github.com/jmlopez-rod/m/compare/0.11.0...0.11.1 diff --git a/m/m.json b/m/m.json index cf31d870..66c4ad69 100644 --- a/m/m.json +++ b/m/m.json @@ -1,6 +1,6 @@ { "owner": "jmlopez-rod", "repo": "m", - "version": "0.12.0", + "version": "0.12.1", "workflow": "m_flow" } diff --git a/m/scripts/publish.sh b/m/scripts/publish.sh index 9d20f390..ce606062 100755 --- a/m/scripts/publish.sh +++ b/m/scripts/publish.sh @@ -11,7 +11,7 @@ source m/.m/env.list export $(cut -d= -f1 m/.m/env.list) m/scripts/build/github.sh || m message error 'github build failure' -m/scripts/build/npmjs.sh || m message error 'npmjs build failure' +# m/scripts/build/npmjs.sh || m message error 'npmjs build failure' m/scripts/build/pypi.sh || m message error 'pypi build failure' # Only publish with the CI tool @@ -26,5 +26,5 @@ npm publish .stage-github/*.tgz --tag "$npmTag" m github release --owner "$M_OWNER" --repo "$M_REPO" --version "$M_TAG" # Release to pypi and npmjs on releases -npm publish .stage-npmjs/*.tgz --tag "$npmTag" python3 -m twine upload .stage-pypi/dist/* +# npm publish .stage-npmjs/*.tgz --tag "$npmTag"