Skip to content

Commit

Permalink
Release v0.0.8
Browse files Browse the repository at this point in the history
  • Loading branch information
stdlib-bot committed Feb 16, 2022
1 parent 40448a1 commit e844e8b
Show file tree
Hide file tree
Showing 7 changed files with 36 additions and 3 deletions.
1 change: 0 additions & 1 deletion .github/.keepalive

This file was deleted.

25 changes: 25 additions & 0 deletions .github/workflows/bundle.yml
Expand Up @@ -23,6 +23,10 @@ name: bundle
on:
workflow_dispatch:
push:
branches:
- main
tags_ignore:
- 'v[0-9]+\.[0-9]+\.[0-9]+'

# Workflow jobs:
jobs:
Expand Down Expand Up @@ -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:
Expand Down Expand Up @@ -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:
Expand Down Expand Up @@ -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()
3 changes: 3 additions & 0 deletions .github/workflows/publish.yml
Expand Up @@ -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'
Expand Down
3 changes: 3 additions & 0 deletions .npmignore
Expand Up @@ -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/
Expand Down
1 change: 1 addition & 0 deletions CONTRIBUTORS
Expand Up @@ -21,5 +21,6 @@ Ognjen Jevremović <ognjenjevremovic@users.noreply.github.com>
Philipp Burckhardt <pburckhardt@outlook.com>
Ricky Reusser <rsreusser@gmail.com>
Ryan Seal <splrk@users.noreply.github.com>
Seyyed Parsa Neshaei <spneshaei@users.noreply.github.com>
Shraddheya Shendre <shendreshraddheya@gmail.com>
rei2hu <rei2hu@users.noreply.github.com>
4 changes: 3 additions & 1 deletion README.md
Expand Up @@ -254,6 +254,8 @@ npm install -g @stdlib/process-umask

</section>

<!-- CLI usage documentation. -->

<section class="usage">

### Usage
Expand Down Expand Up @@ -329,7 +331,7 @@ See [LICENSE][stdlib-license].

## Copyright

Copyright &copy; 2016-2021. The Stdlib [Authors][stdlib-authors].
Copyright &copy; 2016-2022. The Stdlib [Authors][stdlib-authors].

</section>

Expand Down
2 changes: 1 addition & 1 deletion 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": {
Expand Down

0 comments on commit e844e8b

Please sign in to comment.