Skip to content

Commit 83e825f

Browse files
committed
Auto-generated commit
1 parent a3572de commit 83e825f

File tree

3 files changed

+63
-5
lines changed

3 files changed

+63
-5
lines changed

.github/.keepalive

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

CHANGELOG.md

Lines changed: 62 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,15 +4,15 @@
44
55
<section class="release" id="unreleased">
66

7-
## Unreleased (2024-07-01)
7+
## Unreleased (2024-07-07)
88

99
<section class="commits">
1010

1111
### Commits
1212

1313
<details>
1414

15-
- [`a591e05`](https://github.com/stdlib-js/stdlib/commit/a591e052cf1b1515c267781b914c6a482e150425) - **test:** fix test configuration _(by Athan Reines)_
15+
- [`a78f7d1`](https://github.com/stdlib-js/stdlib/commit/a78f7d1b859b6b1d7b0bc0ee4daf76789e3e0910) - **style:** add missing spaces _(by Philipp Burckhardt)_
1616

1717
</details>
1818

@@ -26,7 +26,66 @@
2626

2727
A total of 1 person contributed to this release. Thank you to this contributor:
2828

29-
- Athan Reines
29+
- Philipp Burckhardt
30+
31+
</section>
32+
33+
<!-- /.contributors -->
34+
35+
</section>
36+
37+
<!-- /.release -->
38+
39+
<section class="release" id="v0.2.1">
40+
41+
## 0.2.1 (2024-02-21)
42+
43+
<section class="features">
44+
45+
### Features
46+
47+
- [`ace728f`](https://github.com/stdlib-js/stdlib/commit/ace728f330033182c28199dc9e13d75eda18cfe0) - update minimum TypeScript version
48+
49+
</section>
50+
51+
<!-- /.features -->
52+
53+
<section class="breaking-changes">
54+
55+
### BREAKING CHANGES
56+
57+
- [`ace728f`](https://github.com/stdlib-js/stdlib/commit/ace728f330033182c28199dc9e13d75eda18cfe0): update minimum TypeScript version
58+
- [`ace728f`](https://github.com/stdlib-js/stdlib/commit/ace728f330033182c28199dc9e13d75eda18cfe0): update minimum TypeScript version to 4.1
59+
60+
- To migrate, users should upgrade their TypeScript version to at least version 4.1.
61+
62+
</section>
63+
64+
<!-- /.breaking-changes -->
65+
66+
<section class="commits">
67+
68+
### Commits
69+
70+
<details>
71+
72+
- [`453dd85`](https://github.com/stdlib-js/stdlib/commit/453dd85b5dd186d2b4d458256fe84906e1503fe2) - **build:** remove tslint directives _(by Philipp Burckhardt)_
73+
- [`ace728f`](https://github.com/stdlib-js/stdlib/commit/ace728f330033182c28199dc9e13d75eda18cfe0) - **feat:** update minimum TypeScript version _(by Philipp Burckhardt)_
74+
- [`55866ea`](https://github.com/stdlib-js/stdlib/commit/55866ea8ef1282528b839fd9ce9c43c6a80056f8) - **test:** use strictEqual checks _(by Philipp Burckhardt)_
75+
76+
</details>
77+
78+
</section>
79+
80+
<!-- /.commits -->
81+
82+
<section class="contributors">
83+
84+
### Contributors
85+
86+
A total of 1 person contributed to this release. Thank you to this contributor:
87+
88+
- Philipp Burckhardt
3089

3190
</section>
3291

test/test.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -135,7 +135,7 @@ tape( 'the function preserves property\'s descriptors', function test( t ) {
135135

136136
bool = moveProperty( obj1, 'a', obj2 );
137137

138-
t.ok( bool, 'successfully moved property');
138+
t.ok( bool, 'successfully moved property' );
139139
t.deepEqual( obj1, {}, 'deep equal' );
140140
t.equal( obj2.a, 'b' );
141141
t.deepEqual( Object.getOwnPropertyDescriptor( obj2, 'a' ), desc, 'descriptors are equal' );

0 commit comments

Comments
 (0)