Skip to content

Commit

Permalink
Release v0.0.9
Browse files Browse the repository at this point in the history
  • Loading branch information
stdlib-bot committed Jul 9, 2022
1 parent affdc8f commit b5ebc41
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/productionize.yml
Original file line number Diff line number Diff line change
Expand Up @@ -662,7 +662,7 @@ jobs:
if: failure()

# Define job that succeeds if all bundles were successfully built:
productionize-status
productionize-status:

# Define display name:
name: 'Productionize status'
Expand All @@ -671,7 +671,7 @@ jobs:
runs-on: ubuntu-latest

# Indicate that this job depends on the prior jobs finishing:
needs: [ bundle-deno, bundle-umd, bundle-esm ]
needs: [ deno, umd, esm ]

# Define the steps to be executed:
steps:
Expand All @@ -684,7 +684,7 @@ jobs:
exit 0
- name: 'If any bundle failed to be generated...'
if: always() && (needs.bundle-deno.result == 'failure' || needs.bundle-umd.result == 'failure' || needs.bundle-esm.result == 'failure')
if: always() && (needs.deno.result == 'failure' || needs.umd.result == 'failure' || needs.esm.result == 'failure')
run: |
echo "One or more bundles failed to be generated."
echo "Failure!"
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -255,8 +255,8 @@ Copyright © 2016-2022. The Stdlib [Authors][stdlib-authors].
[npm-image]: http://img.shields.io/npm/v/@stdlib/stats-base-meanwd.svg
[npm-url]: https://npmjs.org/package/@stdlib/stats-base-meanwd

[test-image]: https://github.com/stdlib-js/stats-base-meanwd/actions/workflows/test.yml/badge.svg?branch=main
[test-url]: https://github.com/stdlib-js/stats-base-meanwd/actions/workflows/test.yml?query=branch:main
[test-image]: https://github.com/stdlib-js/stats-base-meanwd/actions/workflows/test.yml/badge.svg?branch=v0.0.9
[test-url]: https://github.com/stdlib-js/stats-base-meanwd/actions/workflows/test.yml?query=branch:v0.0.9

[coverage-image]: https://img.shields.io/codecov/c/github/stdlib-js/stats-base-meanwd/main.svg
[coverage-url]: https://codecov.io/github/stdlib-js/stats-base-meanwd?branch=main
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@stdlib/stats-base-meanwd",
"version": "0.0.8",
"version": "0.0.9",
"description": "Calculate the arithmetic mean of a strided array using Welford's algorithm.",
"license": "Apache-2.0",
"author": {
Expand Down

0 comments on commit b5ebc41

Please sign in to comment.