Skip to content

Commit cc93d82

Browse files
committed
Release v0.1.1
1 parent d7403cc commit cc93d82

File tree

4 files changed

+8
-4
lines changed

4 files changed

+8
-4
lines changed

.github/.keepalive

-1
This file was deleted.

.github/workflows/publish.yml

+5
Original file line numberDiff line numberDiff line change
@@ -149,6 +149,11 @@ jobs:
149149
# Add link definition for CLI package to README.md:
150150
find . -type f -name '*.md' -print0 | xargs -0 perl -0777 -i -pe "s/<section class=\"links\">/<section class=\"links\">\n\n[$escapedPkg]: https:\/\/www.npmjs.com\/package\/$escapedPkg/"
151151
152+
# Replace LICENSE comments with abbreviated ones:
153+
- name: 'Replace LICENSE comments with abbreviated ones'
154+
run: |
155+
find . -name "*.js" -type f -exec perl -i -p0e 's|/\*\*\n\*\s\@license\sApache-2.0\n\*\n\*\sCopyright\s\(c\)\s\d{4}\sThe\sStdlib\sAuthors\.\n(.*?)\n\*\slimitations\sunder\sthe\sLicense\.\n\*/|// Copyright (c) 2023 The Stdlib Authors. License is Apache-2.0: http://www.apache.org/licenses/LICENSE-2.0|s' {} \;
156+
152157
# Replace GitHub MathJax equations with SVGs:
153158
- name: 'Replace GitHub MathJax equations with SVGs'
154159
run: |

README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -145,8 +145,8 @@ Copyright &copy; 2016-2023. The Stdlib [Authors][stdlib-authors].
145145
[npm-image]: http://img.shields.io/npm/v/@stdlib/string-base-lowercase.svg
146146
[npm-url]: https://npmjs.org/package/@stdlib/string-base-lowercase
147147

148-
[test-image]: https://github.com/stdlib-js/string-base-lowercase/actions/workflows/test.yml/badge.svg?branch=main
149-
[test-url]: https://github.com/stdlib-js/string-base-lowercase/actions/workflows/test.yml?query=branch:main
148+
[test-image]: https://github.com/stdlib-js/string-base-lowercase/actions/workflows/test.yml/badge.svg?branch=v0.1.1
149+
[test-url]: https://github.com/stdlib-js/string-base-lowercase/actions/workflows/test.yml?query=branch:v0.1.1
150150

151151
[coverage-image]: https://img.shields.io/codecov/c/github/stdlib-js/string-base-lowercase/main.svg
152152
[coverage-url]: https://codecov.io/github/stdlib-js/string-base-lowercase?branch=main

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@stdlib/string-base-lowercase",
3-
"version": "0.1.0",
3+
"version": "0.1.1",
44
"description": "Convert a string to lowercase.",
55
"license": "Apache-2.0",
66
"author": {

0 commit comments

Comments
 (0)