Skip to content

Commit 358d7b6

Browse files
committed
Auto-generated commit
1 parent 2ebb293 commit 358d7b6

File tree

10 files changed

+139
-169
lines changed

10 files changed

+139
-169
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-01T04:48:20.149Z
1+
2025-05-26T01:25:28.398Z

.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/string/base/distances) 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: 27 additions & 141 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-01)
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-28)
@@ -36,58 +26,36 @@ No changes reported for this release.
3626

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

39-
<section class="packages">
40-
41-
### Packages
42-
43-
<section class="package" id="string-base-distances-v0.2.0">
44-
45-
#### [@stdlib/string/base/distances](https://github.com/stdlib-js/stdlib/tree/develop/lib/node_modules/%40stdlib/string/base/distances)
46-
47-
<details>
48-
4929
<section class="features">
5030

51-
##### Features
31+
### Features
5232

5333
- [`68413e0`](https://github.com/stdlib-js/stdlib/commit/68413e05376206b18c4ff8662a8568a189dad77e) - update namespace TypeScript declarations [(#1221)](https://github.com/stdlib-js/stdlib/pull/1221)
5434
- [`b1e4cca`](https://github.com/stdlib-js/stdlib/commit/b1e4cca30147188064b2275a0242a0334befbcd1) - update namespace exports
35+
- [`165ab63`](https://github.com/stdlib-js/stdlib/commit/165ab63d2f841d54753be8572f7db06be878dfbb) - add `string/base/distances/hamming` (#1166) [(#1166)](https://github.com/stdlib-js/stdlib/pull/1166)
5536

5637
</section>
5738

5839
<!-- /.features -->
5940

60-
</details>
61-
62-
</section>
63-
64-
<!-- /.package -->
65-
66-
<section class="package" id="string-base-distances-hamming-v0.2.0">
41+
<section class="commits">
6742

68-
#### [@stdlib/string/base/distances/hamming](https://github.com/stdlib-js/stdlib/tree/develop/lib/node_modules/%40stdlib/string/base/distances/hamming)
43+
### Commits
6944

7045
<details>
7146

72-
<section class="features">
73-
74-
##### Features
75-
76-
- [`165ab63`](https://github.com/stdlib-js/stdlib/commit/165ab63d2f841d54753be8572f7db06be878dfbb) - add `string/base/distances/hamming` (#1166) [(#1166)](https://github.com/stdlib-js/stdlib/pull/1166)
77-
78-
</section>
79-
80-
<!-- /.features -->
47+
- [`68413e0`](https://github.com/stdlib-js/stdlib/commit/68413e05376206b18c4ff8662a8568a189dad77e) - **feat:** update namespace TypeScript declarations [(#1221)](https://github.com/stdlib-js/stdlib/pull/1221) _(by stdlib-bot, Philipp Burckhardt)_
48+
- [`5184bd0`](https://github.com/stdlib-js/stdlib/commit/5184bd0461e8c78f983d4b619a863d93c52c6396) - **docs:** update namespace table of contents [(#1213)](https://github.com/stdlib-js/stdlib/pull/1213) _(by stdlib-bot, Athan Reines)_
49+
- [`b1e4cca`](https://github.com/stdlib-js/stdlib/commit/b1e4cca30147188064b2275a0242a0334befbcd1) - **feat:** update namespace exports _(by Philipp Burckhardt)_
50+
- [`165ab63`](https://github.com/stdlib-js/stdlib/commit/165ab63d2f841d54753be8572f7db06be878dfbb) - **feat:** add `string/base/distances/hamming` (#1166) [(#1166)](https://github.com/stdlib-js/stdlib/pull/1166) _(by Robert Gislason, Athan Reines)_
51+
- [`9502ed2`](https://github.com/stdlib-js/stdlib/commit/9502ed27e2853e312c556a48bdd7775095e66709) - **build:** replace tslint directive with eslint equivalent _(by Philipp Burckhardt)_
52+
- [`d73bbf4`](https://github.com/stdlib-js/stdlib/commit/d73bbf43d222f935085f8ecf7526e5f57835f74e) - **build:** replace lint directives _(by Philipp Burckhardt)_
8153

8254
</details>
8355

8456
</section>
8557

86-
<!-- /.package -->
87-
88-
</section>
89-
90-
<!-- /.packages -->
58+
<!-- /.commits -->
9159

9260
<section class="contributors">
9361

@@ -103,25 +71,6 @@ A total of 3 people contributed to this release. Thank you to the following cont
10371

10472
<!-- /.contributors -->
10573

106-
<section class="commits">
107-
108-
### Commits
109-
110-
<details>
111-
112-
- [`68413e0`](https://github.com/stdlib-js/stdlib/commit/68413e05376206b18c4ff8662a8568a189dad77e) - **feat:** update namespace TypeScript declarations [(#1221)](https://github.com/stdlib-js/stdlib/pull/1221) _(by stdlib-bot, Philipp Burckhardt)_
113-
- [`5184bd0`](https://github.com/stdlib-js/stdlib/commit/5184bd0461e8c78f983d4b619a863d93c52c6396) - **docs:** update namespace table of contents [(#1213)](https://github.com/stdlib-js/stdlib/pull/1213) _(by stdlib-bot, Athan Reines)_
114-
- [`b1e4cca`](https://github.com/stdlib-js/stdlib/commit/b1e4cca30147188064b2275a0242a0334befbcd1) - **feat:** update namespace exports _(by Philipp Burckhardt)_
115-
- [`165ab63`](https://github.com/stdlib-js/stdlib/commit/165ab63d2f841d54753be8572f7db06be878dfbb) - **feat:** add `string/base/distances/hamming` (#1166) [(#1166)](https://github.com/stdlib-js/stdlib/pull/1166) _(by Robert Gislason, Athan Reines)_
116-
- [`9502ed2`](https://github.com/stdlib-js/stdlib/commit/9502ed27e2853e312c556a48bdd7775095e66709) - **build:** replace tslint directive with eslint equivalent _(by Philipp Burckhardt)_
117-
- [`d73bbf4`](https://github.com/stdlib-js/stdlib/commit/d73bbf43d222f935085f8ecf7526e5f57835f74e) - **build:** replace lint directives _(by Philipp Burckhardt)_
118-
119-
</details>
120-
121-
</section>
122-
123-
<!-- /.commits -->
124-
12574
</section>
12675

12776
<!-- /.release -->
@@ -150,19 +99,9 @@ No changes reported for this release.
15099

151100
## 0.0.1 (2023-09-22)
152101

153-
<section class="packages">
154-
155-
### Packages
156-
157-
<section class="package" id="string-base-distances-v0.0.1">
158-
159-
#### [@stdlib/string/base/distances](https://github.com/stdlib-js/stdlib/tree/develop/lib/node_modules/%40stdlib/string/base/distances)
160-
161-
<details>
162-
163102
<section class="features">
164103

165-
##### Features
104+
### Features
166105

167106
- [`3573d92`](https://github.com/stdlib-js/stdlib/commit/3573d92955f1150eae58fb534808b7a30532a1c1) - update minimum TypeScript version
168107
- [`810ebc1`](https://github.com/stdlib-js/stdlib/commit/810ebc1b4d4b5eaf023f5281774e54db733bb4e0) - update namespace TypeScript declarations [(#1047)](https://github.com/stdlib-js/stdlib/pull/1047)
@@ -175,59 +114,6 @@ No changes reported for this release.
175114

176115
<section class="breaking-changes">
177116

178-
##### BREAKING CHANGES
179-
180-
- [`3573d92`](https://github.com/stdlib-js/stdlib/commit/3573d92955f1150eae58fb534808b7a30532a1c1): update minimum TypeScript version
181-
182-
</section>
183-
184-
<!-- /.breaking-changes -->
185-
186-
</details>
187-
188-
</section>
189-
190-
<!-- /.package -->
191-
192-
<section class="package" id="string-base-distances-levenshtein-v0.0.1">
193-
194-
#### [@stdlib/string/base/distances/levenshtein](https://github.com/stdlib-js/stdlib/tree/develop/lib/node_modules/%40stdlib/string/base/distances/levenshtein)
195-
196-
<details>
197-
198-
<section class="features">
199-
200-
##### Features
201-
202-
- [`3573d92`](https://github.com/stdlib-js/stdlib/commit/3573d92955f1150eae58fb534808b7a30532a1c1) - update minimum TypeScript version
203-
- [`c40a139`](https://github.com/stdlib-js/stdlib/commit/c40a1396adb204bf1f9c6d550d99884a8004b424) - add `string/base/distances/levenshtein` [(#1030)](https://github.com/stdlib-js/stdlib/pull/1030 )
204-
205-
</section>
206-
207-
<!-- /.features -->
208-
209-
<section class="breaking-changes">
210-
211-
##### BREAKING CHANGES
212-
213-
- [`3573d92`](https://github.com/stdlib-js/stdlib/commit/3573d92955f1150eae58fb534808b7a30532a1c1): update minimum TypeScript version
214-
215-
</section>
216-
217-
<!-- /.breaking-changes -->
218-
219-
</details>
220-
221-
</section>
222-
223-
<!-- /.package -->
224-
225-
</section>
226-
227-
<!-- /.packages -->
228-
229-
<section class="breaking-changes">
230-
231117
### BREAKING CHANGES
232118

233119
- [`3573d92`](https://github.com/stdlib-js/stdlib/commit/3573d92955f1150eae58fb534808b7a30532a1c1): update minimum TypeScript version
@@ -236,21 +122,6 @@ No changes reported for this release.
236122

237123
<!-- /.breaking-changes -->
238124

239-
<section class="contributors">
240-
241-
### Contributors
242-
243-
A total of 4 people contributed to this release. Thank you to the following contributors:
244-
245-
- Athan Reines
246-
- Naresh Jagadeesan
247-
- Philipp Burckhardt
248-
- Planeshifter
249-
250-
</section>
251-
252-
<!-- /.contributors -->
253-
254125
<section class="commits">
255126

256127
### Commits
@@ -277,6 +148,21 @@ A total of 4 people contributed to this release. Thank you to the following cont
277148

278149
<!-- /.commits -->
279150

151+
<section class="contributors">
152+
153+
### Contributors
154+
155+
A total of 4 people contributed to this release. Thank you to the following contributors:
156+
157+
- Athan Reines
158+
- Naresh Jagadeesan
159+
- Philipp Burckhardt
160+
- Planeshifter
161+
162+
</section>
163+
164+
<!-- /.contributors -->
165+
280166
</section>
281167

282168
<!-- /.release -->

0 commit comments

Comments
 (0)