Skip to content

Commit 4004b51

Browse files
committed
Auto-generated commit
1 parent 805a176 commit 4004b51

File tree

5 files changed

+25
-78
lines changed

5 files changed

+25
-78
lines changed

.github/.keepalive

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
2024-08-01T01:20:20.508Z

.gitignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -101,6 +101,8 @@ docs/**/node_modules/
101101
pids
102102
*.pid
103103
*.seed
104+
yarn.lock
105+
package-lock.json
104106

105107
# Typescript #
106108
##############

CHANGELOG.md

Lines changed: 15 additions & 71 deletions
Original file line numberDiff line numberDiff line change
@@ -2,38 +2,17 @@
22

33
> Package changelog.
44
5-
<section class="release" id="v0.3.0">
6-
7-
## 0.3.0 (2024-07-27)
8-
9-
<section class="features">
10-
11-
### Features
12-
13-
- [`67858b3`](https://github.com/stdlib-js/stdlib/commit/67858b341e920fed871e34ba0d6b6809804916f7) - improve type safety
14-
15-
</section>
5+
<section class="release" id="unreleased">
166

17-
<!-- /.features -->
18-
19-
<section class="breaking-changes">
20-
21-
### BREAKING CHANGES
22-
23-
- [`67858b3`](https://github.com/stdlib-js/stdlib/commit/67858b341e920fed871e34ba0d6b6809804916f7): improve type safety
24-
- [`67858b3`](https://github.com/stdlib-js/stdlib/commit/67858b341e920fed871e34ba0d6b6809804916f7): The return types are now more specific. This may break existing code that relies on less strict typing, but should not affect most users. To preserve the prior behavior, you can cast the return value to `string` via a type assertion.
25-
26-
</section>
27-
28-
<!-- /.breaking-changes -->
7+
## Unreleased (2024-08-01)
298

309
<section class="commits">
3110

3211
### Commits
3312

3413
<details>
3514

36-
- [`67858b3`](https://github.com/stdlib-js/stdlib/commit/67858b341e920fed871e34ba0d6b6809804916f7) - **feat:** improve type safety _(by Philipp Burckhardt)_
15+
- [`22c4d29`](https://github.com/stdlib-js/stdlib/commit/22c4d29898e2b5bb4cb071a6b7f62536027eaf28) - **docs:** remove blank line _(by Athan Reines)_
3716

3817
</details>
3918

@@ -47,7 +26,7 @@
4726

4827
A total of 1 person contributed to this release. Thank you to this contributor:
4928

50-
- Philipp Burckhardt
29+
- Athan Reines
5130

5231
</section>
5332

@@ -57,6 +36,16 @@ A total of 1 person contributed to this release. Thank you to this contributor:
5736

5837
<!-- /.release -->
5938

39+
<section class="release" id="v0.3.0">
40+
41+
## 0.3.0 (2024-07-27)
42+
43+
No changes reported for this release.
44+
45+
</section>
46+
47+
<!-- /.release -->
48+
6049
<section class="release" id="v0.2.1">
6150

6251
## 0.2.1 (2024-02-22)
@@ -91,52 +80,7 @@ No changes reported for this release.
9180

9281
## 0.1.0 (2023-09-22)
9382

94-
<section class="features">
95-
96-
### Features
97-
98-
- [`3573d92`](https://github.com/stdlib-js/stdlib/commit/3573d92955f1150eae58fb534808b7a30532a1c1) - update minimum TypeScript version
99-
100-
</section>
101-
102-
<!-- /.features -->
103-
104-
<section class="breaking-changes">
105-
106-
### BREAKING CHANGES
107-
108-
- [`3573d92`](https://github.com/stdlib-js/stdlib/commit/3573d92955f1150eae58fb534808b7a30532a1c1): update minimum TypeScript version
109-
110-
</section>
111-
112-
<!-- /.breaking-changes -->
113-
114-
<section class="commits">
115-
116-
### Commits
117-
118-
<details>
119-
120-
- [`3573d92`](https://github.com/stdlib-js/stdlib/commit/3573d92955f1150eae58fb534808b7a30532a1c1) - **feat:** update minimum TypeScript version _(by Philipp Burckhardt)_
121-
- [`6c7e770`](https://github.com/stdlib-js/stdlib/commit/6c7e770dab6e03561202af2861ae11c27af8a90c) - **refactor:** use strictEqual checks _(by Philipp Burckhardt)_
122-
123-
</details>
124-
125-
</section>
126-
127-
<!-- /.commits -->
128-
129-
<section class="contributors">
130-
131-
### Contributors
132-
133-
A total of 1 person contributed to this release. Thank you to this contributor:
134-
135-
- Philipp Burckhardt
136-
137-
</section>
138-
139-
<!-- /.contributors -->
83+
No changes reported for this release.
14084

14185
</section>
14286

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -227,8 +227,8 @@ Copyright &copy; 2016-2024. The Stdlib [Authors][stdlib-authors].
227227
[npm-image]: http://img.shields.io/npm/v/@stdlib/string-uppercase.svg
228228
[npm-url]: https://npmjs.org/package/@stdlib/string-uppercase
229229

230-
[test-image]: https://github.com/stdlib-js/string-uppercase/actions/workflows/test.yml/badge.svg?branch=v0.3.0
231-
[test-url]: https://github.com/stdlib-js/string-uppercase/actions/workflows/test.yml?query=branch:v0.3.0
230+
[test-image]: https://github.com/stdlib-js/string-uppercase/actions/workflows/test.yml/badge.svg?branch=main
231+
[test-url]: https://github.com/stdlib-js/string-uppercase/actions/workflows/test.yml?query=branch:main
232232

233233
[coverage-image]: https://img.shields.io/codecov/c/github/stdlib-js/string-uppercase/main.svg
234234
[coverage-url]: https://codecov.io/github/stdlib-js/string-uppercase?branch=main

package.json

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -43,21 +43,21 @@
4343
"@stdlib/assert-is-string": "^0.2.2",
4444
"@stdlib/cli-ctor": "^0.2.2",
4545
"@stdlib/fs-read-file": "^0.2.2",
46-
"@stdlib/process-read-stdin": "^0.2.1",
46+
"@stdlib/process-read-stdin": "^0.2.2",
4747
"@stdlib/streams-node-stdin": "^0.2.2",
4848
"@stdlib/string-format": "^0.2.2",
4949
"@stdlib/error-tools-fmtprodmsg": "^0.2.2"
5050
},
5151
"devDependencies": {
52-
"@stdlib/assert-is-browser": "^0.2.1",
52+
"@stdlib/assert-is-browser": "^0.2.2",
5353
"@stdlib/assert-is-windows": "^0.2.2",
54-
"@stdlib/process-exec-path": "^0.2.1",
55-
"@stdlib/string-replace": "^0.2.1",
54+
"@stdlib/process-exec-path": "^0.2.2",
55+
"@stdlib/string-replace": "^0.2.2",
5656
"tape": "git+https://github.com/kgryte/tape.git#fix/globby",
5757
"proxyquire": "^2.0.0",
5858
"istanbul": "^0.4.1",
5959
"tap-min": "git+https://github.com/Planeshifter/tap-min.git",
60-
"@stdlib/bench-harness": "^0.2.1"
60+
"@stdlib/bench-harness": "^0.2.2"
6161
},
6262
"engines": {
6363
"node": ">=0.10.0",

0 commit comments

Comments
 (0)