From e844e8bdf531ec994ce79da304e9981478830b38 Mon Sep 17 00:00:00 2001 From: stdlib-bot Date: Wed, 16 Feb 2022 07:21:06 +0000 Subject: [PATCH] Release v0.0.8 --- .github/.keepalive | 1 - .github/workflows/bundle.yml | 25 +++++++++++++++++++++++++ .github/workflows/publish.yml | 3 +++ .npmignore | 3 +++ CONTRIBUTORS | 1 + README.md | 4 +++- package.json | 2 +- 7 files changed, 36 insertions(+), 3 deletions(-) delete mode 100644 .github/.keepalive diff --git a/.github/.keepalive b/.github/.keepalive deleted file mode 100644 index 6c98ddf..0000000 --- a/.github/.keepalive +++ /dev/null @@ -1 +0,0 @@ -2022-02-04T23:08:06.480Z diff --git a/.github/workflows/bundle.yml b/.github/workflows/bundle.yml index f9779c1..83046d2 100644 --- a/.github/workflows/bundle.yml +++ b/.github/workflows/bundle.yml @@ -23,6 +23,10 @@ name: bundle on: workflow_dispatch: push: + branches: + - main + tags_ignore: + - 'v[0-9]+\.[0-9]+\.[0-9]+' # Workflow jobs: jobs: @@ -90,6 +94,13 @@ jobs: user_email: 'noreply@stdlib.io' commit_message: 'Auto-generated commit' enable_jekyll: true + - name: Send status to Slack channel in case of failure + uses: act10ns/slack@v1 + with: + status: ${{ job.status }} + steps: ${{ toJson(steps) }} + channel: '#npm-ci' + if: failure() umd: runs-on: ubuntu-latest steps: @@ -152,6 +163,13 @@ jobs: user_email: 'noreply@stdlib.io' commit_message: 'Auto-generated commit' enable_jekyll: true + - name: Send status to Slack channel in case of failure + uses: act10ns/slack@v1 + with: + status: ${{ job.status }} + steps: ${{ toJson(steps) }} + channel: '#npm-ci' + if: failure() esm: runs-on: ubuntu-latest steps: @@ -220,3 +238,10 @@ jobs: user_email: 'noreply@stdlib.io' commit_message: 'Auto-generated commit' enable_jekyll: true + - name: Send status to Slack channel in case of failure + uses: act10ns/slack@v1 + with: + status: ${{ job.status }} + steps: ${{ toJson(steps) }} + channel: '#npm-ci' + if: failure() diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index 599c73d..b5844f0 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -39,6 +39,9 @@ jobs: - name: Replace all GitHub links to individual packages with npm links run: | find . -type f -name '*.md' -print0 | xargs -0 sed -Ei '/tree\/main/b; s/@stdlib\/([^:]*)\]: https:\/\/github.com\/stdlib-js/@stdlib\/\1\]: https:\/\/www.npmjs.com\/package\/@stdlib/g' + - name: Replace list with links to other branches from installation section + run: | + find . -type f -name '*.md' -print0 | xargs -0 perl -0777 -i -pe "s/\`\`\`\n\nAlternatively,[^<]+<\/section>/\`\`\`\n\n<\/section>/" - name: Replace all stdlib GitHub dependencies with the respective npm packages run: | find package.json -type f -print0 | xargs -0 sed -Ei 's/"github:stdlib-js[^"]*"/"^0.0.x"/g' diff --git a/.npmignore b/.npmignore index 8c24fa0..69c44df 100644 --- a/.npmignore +++ b/.npmignore @@ -27,6 +27,9 @@ ROADMAP.md .postinstall.json Makefile +# Ignore `binding.gyp` file to avoid compilation of native addon when installing package: +binding.gyp + # Directories # ############### .circleci/ diff --git a/CONTRIBUTORS b/CONTRIBUTORS index afd251d..2256ede 100644 --- a/CONTRIBUTORS +++ b/CONTRIBUTORS @@ -21,5 +21,6 @@ Ognjen Jevremović Philipp Burckhardt Ricky Reusser Ryan Seal +Seyyed Parsa Neshaei Shraddheya Shendre rei2hu diff --git a/README.md b/README.md index 463b0f6..744cae5 100644 --- a/README.md +++ b/README.md @@ -254,6 +254,8 @@ npm install -g @stdlib/process-umask + +
### Usage @@ -329,7 +331,7 @@ See [LICENSE][stdlib-license]. ## Copyright -Copyright © 2016-2021. The Stdlib [Authors][stdlib-authors]. +Copyright © 2016-2022. The Stdlib [Authors][stdlib-authors].
diff --git a/package.json b/package.json index 7025ccc..35227cf 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@stdlib/process-umask", - "version": "0.0.7", + "version": "0.0.8", "description": "Get/set the process mask.", "license": "Apache-2.0", "author": {