Skip to content

Commit de9478d

Browse files
committed
Auto-generated commit
1 parent 28dbd58 commit de9478d

File tree

10 files changed

+118
-155
lines changed

10 files changed

+118
-155
lines changed

.editorconfig

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,6 @@ indent_style = tab
8686
[*.{f,f.txt}]
8787
indent_style = space
8888
indent_size = 2
89-
insert_final_newline = false
9089

9190
# Set properties for shell files:
9291
[*.{sh,sh.txt}]
@@ -121,7 +120,7 @@ indent_style = tab
121120
[*.{md,md.txt}]
122121
indent_style = space
123122
indent_size = 4
124-
trim_trailing_whitespace = false
123+
trim_trailing_whitespace = true # Note: this disables using two spaces to force a hard line break, which is permitted in Markdown. As we don't typically follow that practice (TMK), we should be safe to automatically trim.
125124
126125
# Set properties for `usage.txt` files:
127126
[usage.txt]

.github/.keepalive

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
2024-12-16T01:45:39.615Z
1+
2025-05-26T01:27:27.435Z

.github/PULL_REQUEST_TEMPLATE.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,6 @@
22

33
We are excited about your pull request, but unfortunately we are not accepting pull requests against this repository, as all development happens on the [main project repository](https://github.com/stdlib-js/stdlib). We kindly request that you submit this pull request against the [respective directory](https://github.com/stdlib-js/stdlib/tree/develop/lib/node_modules/%40stdlib/constants/unicode) of the main repository where we’ll review and provide feedback.
44

5-
If this is your first stdlib contribution, be sure to read the [contributing guide](https://github.com/stdlib-js/stdlib/blob/develop/CONTRIBUTING.md) which provides guidelines and instructions for submitting contributions. You may also consult the [development guide](https://github.com/stdlib-js/stdlib/blob/develop/docs/development.md) for help on developing stdlib.
5+
If this is your first stdlib contribution, be sure to read the [contributing guide](https://github.com/stdlib-js/stdlib/blob/develop/CONTRIBUTING.md) which provides guidelines and instructions for submitting contributions. You may also consult the [development guide](https://github.com/stdlib-js/stdlib/blob/develop/docs/contributing/development.md) for help on developing stdlib.
66

77
We look forward to receiving your contribution! :smiley:

.github/workflows/test_install.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -50,8 +50,8 @@ jobs:
5050
env:
5151
SLACK_WEBHOOK_URL: ${{ secrets.SLACK_WEBHOOK_URL }}
5252

53-
# Run workflow job if `publish` workflow run is successful or when the workflow is manually run:
54-
if: ${{ github.event.workflow_run.conclusion == 'success' || github.event_name == 'workflow_dispatch' }}
53+
# Run workflow job if `publish` workflow run is successful or when the workflow is manually triggered or on a schedule:
54+
if: ${{ github.event.workflow_run.conclusion == 'success' || github.event_name == 'workflow_dispatch' || github.event_name == 'schedule' }}
5555

5656
# Define the sequence of job steps...
5757
steps:

.github/workflows/test_published_package.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -47,8 +47,8 @@ jobs:
4747
env:
4848
SLACK_WEBHOOK_URL: ${{ secrets.SLACK_WEBHOOK_URL }}
4949

50-
# Run workflow job if `publish` workflow run is successful or when the workflow is manually run:
51-
if: ${{ github.event.workflow_run.conclusion == 'success' || github.event_name == 'workflow_dispatch' }}
50+
# Run workflow job if `publish` workflow run is successful or when the workflow is manually triggered or on a schedule:
51+
if: ${{ github.event.workflow_run.conclusion == 'success' || github.event_name == 'workflow_dispatch' || github.event_name == 'schedule' }}
5252

5353
# Define the job's steps:
5454
steps:

.gitignore

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -188,3 +188,7 @@ jsconfig.json
188188
# Other editor files #
189189
######################
190190
.idea/
191+
192+
# Cursor #
193+
##########
194+
.cursorignore

CHANGELOG.md

Lines changed: 17 additions & 135 deletions
Original file line numberDiff line numberDiff line change
@@ -2,16 +2,6 @@
22

33
> Package changelog.
44
5-
<section class="release" id="unreleased">
6-
7-
## Unreleased (2024-12-16)
8-
9-
No changes reported for this release.
10-
11-
</section>
12-
13-
<!-- /.release -->
14-
155
<section class="release" id="v0.2.2">
166

177
## 0.2.2 (2024-07-26)
@@ -36,13 +26,21 @@ No changes reported for this release.
3626

3727
## 0.2.0 (2024-02-14)
3828

39-
<section class="packages">
29+
<section class="commits">
30+
31+
### Commits
32+
33+
<details>
34+
35+
- [`9502ed2`](https://github.com/stdlib-js/stdlib/commit/9502ed27e2853e312c556a48bdd7775095e66709) - **build:** replace tslint directive with eslint equivalent _(by Philipp Burckhardt)_
36+
- [`46d049b`](https://github.com/stdlib-js/stdlib/commit/46d049b5d38f9ef6e426d6a517ac8925c94d7642) - **build:** replace tslint directive _(by Philipp Burckhardt)_
37+
- [`d73bbf4`](https://github.com/stdlib-js/stdlib/commit/d73bbf43d222f935085f8ecf7526e5f57835f74e) - **build:** replace lint directives _(by Philipp Burckhardt)_
4038

41-
### Packages
39+
</details>
4240

4341
</section>
4442

45-
<!-- /.packages -->
43+
<!-- /.commits -->
4644

4745
<section class="contributors">
4846

@@ -56,22 +54,6 @@ A total of 1 person contributed to this release. Thank you to this contributor:
5654

5755
<!-- /.contributors -->
5856

59-
<section class="commits">
60-
61-
### Commits
62-
63-
<details>
64-
65-
- [`9502ed2`](https://github.com/stdlib-js/stdlib/commit/9502ed27e2853e312c556a48bdd7775095e66709) - **build:** replace tslint directive with eslint equivalent _(by Philipp Burckhardt)_
66-
- [`46d049b`](https://github.com/stdlib-js/stdlib/commit/46d049b5d38f9ef6e426d6a517ac8925c94d7642) - **build:** replace tslint directive _(by Philipp Burckhardt)_
67-
- [`d73bbf4`](https://github.com/stdlib-js/stdlib/commit/d73bbf43d222f935085f8ecf7526e5f57835f74e) - **build:** replace lint directives _(by Philipp Burckhardt)_
68-
69-
</details>
70-
71-
</section>
72-
73-
<!-- /.commits -->
74-
7557
</section>
7658

7759
<!-- /.release -->
@@ -90,53 +72,9 @@ No changes reported for this release.
9072

9173
## 0.1.0 (2023-09-22)
9274

93-
<section class="packages">
94-
95-
### Packages
96-
97-
<section class="package" id="constants-unicode-v0.1.0">
98-
99-
#### [@stdlib/constants/unicode](https://github.com/stdlib-js/stdlib/tree/develop/lib/node_modules/%40stdlib/constants/unicode)
100-
101-
<details>
102-
103-
<section class="features">
104-
105-
##### Features
106-
107-
- [`56e6edf`](https://github.com/stdlib-js/stdlib/commit/56e6edfcdf0dda1a348a92a67378729861cf24e1) - update minimum TypeScript version
108-
109-
</section>
110-
111-
<!-- /.features -->
112-
113-
<section class="breaking-changes">
114-
115-
##### BREAKING CHANGES
116-
117-
- [`56e6edf`](https://github.com/stdlib-js/stdlib/commit/56e6edfcdf0dda1a348a92a67378729861cf24e1): update minimum TypeScript version to 4.1
118-
119-
- To migrate, users should upgrade their TypeScript version to at least version 4.1.
120-
121-
</section>
122-
123-
<!-- /.breaking-changes -->
124-
125-
</details>
126-
127-
</section>
128-
129-
<!-- /.package -->
130-
131-
<section class="package" id="constants-unicode-max-v0.1.0">
132-
133-
#### [@stdlib/constants/unicode/max](https://github.com/stdlib-js/stdlib/tree/develop/lib/node_modules/%40stdlib/constants/unicode/max)
134-
135-
<details>
136-
13775
<section class="features">
13876

139-
##### Features
77+
### Features
14078

14179
- [`56e6edf`](https://github.com/stdlib-js/stdlib/commit/56e6edfcdf0dda1a348a92a67378729861cf24e1) - update minimum TypeScript version
14280

@@ -146,7 +84,7 @@ No changes reported for this release.
14684

14785
<section class="breaking-changes">
14886

149-
##### BREAKING CHANGES
87+
### BREAKING CHANGES
15088

15189
- [`56e6edf`](https://github.com/stdlib-js/stdlib/commit/56e6edfcdf0dda1a348a92a67378729861cf24e1): update minimum TypeScript version to 4.1
15290

@@ -156,61 +94,19 @@ No changes reported for this release.
15694

15795
<!-- /.breaking-changes -->
15896

159-
</details>
160-
161-
</section>
162-
163-
<!-- /.package -->
164-
165-
<section class="package" id="constants-unicode-max-bmp-v0.1.0">
97+
<section class="commits">
16698

167-
#### [@stdlib/constants/unicode/max-bmp](https://github.com/stdlib-js/stdlib/tree/develop/lib/node_modules/%40stdlib/constants/unicode/max-bmp)
99+
### Commits
168100

169101
<details>
170102

171-
<section class="features">
172-
173-
##### Features
174-
175-
- [`56e6edf`](https://github.com/stdlib-js/stdlib/commit/56e6edfcdf0dda1a348a92a67378729861cf24e1) - update minimum TypeScript version
176-
177-
</section>
178-
179-
<!-- /.features -->
180-
181-
<section class="breaking-changes">
182-
183-
##### BREAKING CHANGES
184-
185-
- [`56e6edf`](https://github.com/stdlib-js/stdlib/commit/56e6edfcdf0dda1a348a92a67378729861cf24e1): update minimum TypeScript version to 4.1
186-
187-
- To migrate, users should upgrade their TypeScript version to at least version 4.1.
188-
189-
</section>
190-
191-
<!-- /.breaking-changes -->
103+
- [`56e6edf`](https://github.com/stdlib-js/stdlib/commit/56e6edfcdf0dda1a348a92a67378729861cf24e1) - **feat:** update minimum TypeScript version _(by Philipp Burckhardt)_
192104

193105
</details>
194106

195107
</section>
196108

197-
<!-- /.package -->
198-
199-
</section>
200-
201-
<!-- /.packages -->
202-
203-
<section class="breaking-changes">
204-
205-
### BREAKING CHANGES
206-
207-
- [`56e6edf`](https://github.com/stdlib-js/stdlib/commit/56e6edfcdf0dda1a348a92a67378729861cf24e1): update minimum TypeScript version to 4.1
208-
209-
- To migrate, users should upgrade their TypeScript version to at least version 4.1.
210-
211-
</section>
212-
213-
<!-- /.breaking-changes -->
109+
<!-- /.commits -->
214110

215111
<section class="contributors">
216112

@@ -224,20 +120,6 @@ A total of 1 person contributed to this release. Thank you to this contributor:
224120

225121
<!-- /.contributors -->
226122

227-
<section class="commits">
228-
229-
### Commits
230-
231-
<details>
232-
233-
- [`56e6edf`](https://github.com/stdlib-js/stdlib/commit/56e6edfcdf0dda1a348a92a67378729861cf24e1) - **feat:** update minimum TypeScript version _(by Philipp Burckhardt)_
234-
235-
</details>
236-
237-
</section>
238-
239-
<!-- /.commits -->
240-
241123
</section>
242124

243125
<!-- /.release -->

0 commit comments

Comments
 (0)