Skip to content

Commit 2bd39bd

Browse files
committed
Release v0.0.8
1 parent 2efb0ad commit 2bd39bd

File tree

4 files changed

+24
-4
lines changed

4 files changed

+24
-4
lines changed

.github/.keepalive

Lines changed: 0 additions & 1 deletion
This file was deleted.

.github/workflows/productionize.yml

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -219,6 +219,13 @@ jobs:
219219
git config merge.theirs.driver 'cat %B > %A'
220220
GIT_CONFIG_PARAMETERS="'merge.default=theirs'" git merge origin/production --allow-unrelated-histories
221221
222+
# Copy files from `production` branch if necessary:
223+
git checkout origin/production -- .
224+
if [ -n "$(git status --porcelain)" ]; then
225+
git add -A
226+
git commit -m "Auto-generated commit"
227+
fi
228+
222229
# If `deno` does not exist, create `deno` branch:
223230
- name: 'If `deno` does not exist, create `deno` branch'
224231
if: ${{ steps.deno-branch-exists.outputs.remote-exists == false }}
@@ -385,6 +392,13 @@ jobs:
385392
git config merge.theirs.driver 'cat %B > %A'
386393
GIT_CONFIG_PARAMETERS="'merge.default=theirs'" git merge origin/production --allow-unrelated-histories
387394
395+
# Copy files from `production` branch if necessary:
396+
git checkout origin/production -- .
397+
if [ -n "$(git status --porcelain)" ]; then
398+
git add -A
399+
git commit -m "Auto-generated commit"
400+
fi
401+
388402
# If `umd` does not exist, create `umd` branch:
389403
- name: 'If `umd` does not exist, create `umd` branch'
390404
if: ${{ steps.umd-branch-exists.outputs.remote-exists == false }}
@@ -549,6 +563,13 @@ jobs:
549563
git config merge.theirs.driver 'cat %B > %A'
550564
GIT_CONFIG_PARAMETERS="'merge.default=theirs'" git merge origin/production --allow-unrelated-histories
551565
566+
# Copy files from `production` branch if necessary:
567+
git checkout origin/production -- .
568+
if [ -n "$(git status --porcelain)" ]; then
569+
git add -A
570+
git commit -m "Auto-generated commit"
571+
fi
572+
552573
# If `esm` does not exist, create `esm` branch:
553574
- name: 'If `esm` does not exist, create `esm` branch'
554575
if: ${{ steps.esm-branch-exists.outputs.remote-exists == false }}

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -189,8 +189,8 @@ Copyright © 2016-2022. The Stdlib [Authors][stdlib-authors].
189189
[npm-image]: http://img.shields.io/npm/v/@stdlib/constants-float64-sqrt-two.svg
190190
[npm-url]: https://npmjs.org/package/@stdlib/constants-float64-sqrt-two
191191

192-
[test-image]: https://github.com/stdlib-js/constants-float64-sqrt-two/actions/workflows/test.yml/badge.svg?branch=main
193-
[test-url]: https://github.com/stdlib-js/constants-float64-sqrt-two/actions/workflows/test.yml?query=branch:main
192+
[test-image]: https://github.com/stdlib-js/constants-float64-sqrt-two/actions/workflows/test.yml/badge.svg?branch=v0.0.8
193+
[test-url]: https://github.com/stdlib-js/constants-float64-sqrt-two/actions/workflows/test.yml?query=branch:v0.0.8
194194

195195
[coverage-image]: https://img.shields.io/codecov/c/github/stdlib-js/constants-float64-sqrt-two/main.svg
196196
[coverage-url]: https://codecov.io/github/stdlib-js/constants-float64-sqrt-two?branch=main

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@stdlib/constants-float64-sqrt-two",
3-
"version": "0.0.7",
3+
"version": "0.0.8",
44
"description": "Square root of 2.",
55
"license": "Apache-2.0",
66
"author": {

0 commit comments

Comments
 (0)