Skip to content

Commit 84e6253

Browse files
committed
Release v0.2.2
1 parent ebc4cde commit 84e6253

File tree

12 files changed

+282
-44
lines changed

12 files changed

+282
-44
lines changed

.gitattributes

Lines changed: 23 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -40,10 +40,27 @@
4040
*.mov binary
4141

4242
# Override what is considered "vendored" by GitHub's linguist:
43-
/deps/** linguist-vendored=false
44-
/lib/node_modules/** linguist-vendored=false linguist-generated=false
45-
test/fixtures/** linguist-vendored=false
46-
tools/** linguist-vendored=false
43+
/lib/node_modules/** -linguist-vendored -linguist-generated
4744

48-
# Override what is considered "documentation" by GitHub's linguist:
49-
examples/** linguist-documentation=false
45+
# Configure directories which should *not* be included in GitHub language statistics:
46+
/deps/** linguist-vendored
47+
/dist/** linguist-generated
48+
/workshops/** linguist-vendored
49+
50+
benchmark/** linguist-vendored
51+
docs/* linguist-documentation
52+
etc/** linguist-vendored
53+
examples/** linguist-documentation
54+
scripts/** linguist-vendored
55+
test/** linguist-vendored
56+
tools/** linguist-vendored
57+
58+
# Configure files which should *not* be included in GitHub language statistics:
59+
Makefile linguist-vendored
60+
*.mk linguist-vendored
61+
*.jl linguist-vendored
62+
*.py linguist-vendored
63+
*.R linguist-vendored
64+
65+
# Configure files which should be included in GitHub language statistics:
66+
docs/types/*.d.ts -linguist-documentation

.github/workflows/publish.yml

Lines changed: 7 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -72,8 +72,8 @@ jobs:
7272
node-version: 20
7373
timeout-minutes: 5
7474

75-
# Configure git:
76-
- name: 'Configure git'
75+
# Configure Git:
76+
- name: 'Configure Git'
7777
run: |
7878
git config --local user.email "noreply@stdlib.io"
7979
git config --local user.name "stdlib-bot"
@@ -94,6 +94,10 @@ jobs:
9494
# Replace branch in README.md link definitions for badges with the new version:
9595
find . -type f -name '*.md' -print0 | xargs -0 sed -Ei "s/branch([=:])[^ ]+/branch\1v${NEW_VERSION}/g"
9696
97+
# Rewrite CHANGELOG.md to replace "Unreleased" with the new version:
98+
sed -Ei "s/Unreleased/${NEW_VERSION}/g" CHANGELOG.md
99+
sed -Ei "s/unreleased/v${NEW_VERSION}/g" CHANGELOG.md
100+
97101
# Create a new commit and tag:
98102
git add package.json README.md
99103
git commit -m "Release v${NEW_VERSION}"
@@ -202,7 +206,7 @@ jobs:
202206
# Publish package to npm:
203207
- name: 'Publish package to npm'
204208
# Pin action to full length commit SHA
205-
uses: JS-DevTools/npm-publish@4b07b26a2f6e0a51846e1870223e545bae91c552 # v3.0.1
209+
uses: JS-DevTools/npm-publish@19c28f1ef146469e409470805ea4279d47c3d35c # v3.1.1
206210
with:
207211
token: ${{ secrets.NPM_TOKEN }}
208212
access: public
@@ -218,7 +222,6 @@ jobs:
218222
uses: 8398a7/action-slack@28ba43ae48961b90635b50953d216767a6bea486 # v3.16.2
219223
with:
220224
status: ${{ job.status }}
221-
steps: ${{ toJson(steps) }}
222225
channel: '#npm-ci'
223226
if: failure()
224227

.github/workflows/publish_cli.yml

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -74,8 +74,8 @@ jobs:
7474
node-version: 20
7575
timeout-minutes: 5
7676

77-
# Configure git:
78-
- name: 'Configure git'
77+
# Configure Git:
78+
- name: 'Configure Git'
7979
run: |
8080
git config --local user.email "noreply@stdlib.io"
8181
git config --local user.name "stdlib-bot"
@@ -129,7 +129,7 @@ jobs:
129129
# Publish package to npm:
130130
- name: 'Publish package to npm'
131131
# Pin action to full length commit SHA
132-
uses: JS-DevTools/npm-publish@4b07b26a2f6e0a51846e1870223e545bae91c552 # v3.0.1
132+
uses: JS-DevTools/npm-publish@19c28f1ef146469e409470805ea4279d47c3d35c # v3.1.1
133133
with:
134134
token: ${{ secrets.NPM_TOKEN }}
135135
access: public
@@ -145,7 +145,6 @@ jobs:
145145
uses: 8398a7/action-slack@28ba43ae48961b90635b50953d216767a6bea486 # v3.16.2
146146
with:
147147
status: ${{ job.status }}
148-
steps: ${{ toJson(steps) }}
149148
channel: '#npm-ci'
150149
if: failure()
151150

.github/workflows/test.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -95,6 +95,5 @@ jobs:
9595
uses: 8398a7/action-slack@28ba43ae48961b90635b50953d216767a6bea486 # v3.16.2
9696
with:
9797
status: ${{ job.status }}
98-
steps: ${{ toJson(steps) }}
9998
channel: '#npm-ci'
10099
if: failure()

.github/workflows/test_coverage.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -119,7 +119,6 @@ jobs:
119119
uses: 8398a7/action-slack@28ba43ae48961b90635b50953d216767a6bea486 # v3.16.2
120120
with:
121121
status: ${{ job.status }}
122-
steps: ${{ toJson(steps) }}
123122
channel: '#npm-ci'
124123
if: failure()
125124

.github/workflows/test_install.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -81,6 +81,5 @@ jobs:
8181
uses: 8398a7/action-slack@28ba43ae48961b90635b50953d216767a6bea486 # v3.16.2
8282
with:
8383
status: ${{ job.status }}
84-
steps: ${{ toJson(steps) }}
8584
channel: '#npm-ci'
8685
if: failure()

.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
##############

.npmrc

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,5 +27,5 @@ shrinkwrap = false
2727
# Disable automatically "saving" dependencies on install:
2828
save = false
2929

30-
# Generate provenance metadata:
31-
provenance = true
30+
# Do not generate provenance metadata:
31+
provenance = false

CHANGELOG.md

Lines changed: 211 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,214 @@
22

33
> Package changelog.
44
5-
See [GitHub Releases](https://github.com/stdlib-js/repl-server/releases) for the changelog.
5+
<section class="release" id="v0.2.2">
6+
7+
## 0.2.2 (2024-07-29)
8+
9+
No changes reported for this release.
10+
11+
</section>
12+
13+
<!-- /.release -->
14+
15+
<section class="release" id="v0.2.1">
16+
17+
## 0.2.1 (2024-02-25)
18+
19+
No changes reported for this release.
20+
21+
</section>
22+
23+
<!-- /.release -->
24+
25+
<section class="release" id="v0.2.0">
26+
27+
## 0.2.0 (2024-02-15)
28+
29+
No changes reported for this release.
30+
31+
</section>
32+
33+
<!-- /.release -->
34+
35+
<section class="release" id="v0.1.1">
36+
37+
## 0.1.1 (2023-11-19)
38+
39+
<section class="commits">
40+
41+
### Commits
42+
43+
<details>
44+
45+
- [`c0ccd8a`](https://github.com/stdlib-js/stdlib/commit/c0ccd8a6108431a4923fde7fad85ec823690b953) - **build:** replace tslint directive with eslint equivalent _(by Philipp Burckhardt)_
46+
47+
</details>
48+
49+
</section>
50+
51+
<!-- /.commits -->
52+
53+
<section class="contributors">
54+
55+
### Contributors
56+
57+
A total of 1 person contributed to this release. Thank you to this contributor:
58+
59+
- Philipp Burckhardt
60+
61+
</section>
62+
63+
<!-- /.contributors -->
64+
65+
</section>
66+
67+
<!-- /.release -->
68+
69+
<section class="release" id="v0.1.0">
70+
71+
## 0.1.0 (2023-09-24)
72+
73+
<section class="features">
74+
75+
### Features
76+
77+
- [`efe050d`](https://github.com/stdlib-js/stdlib/commit/efe050dbf3d17bd6929da255fa079c0324afc213) - update minimum TypeScript version
78+
79+
</section>
80+
81+
<!-- /.features -->
82+
83+
<section class="breaking-changes">
84+
85+
### BREAKING CHANGES
86+
87+
- [`efe050d`](https://github.com/stdlib-js/stdlib/commit/efe050dbf3d17bd6929da255fa079c0324afc213): update minimum TypeScript version
88+
- [`efe050d`](https://github.com/stdlib-js/stdlib/commit/efe050dbf3d17bd6929da255fa079c0324afc213): update minimum TypeScript version to 4.1
89+
90+
- To migrate, users should upgrade their TypeScript version to at least version 4.1.
91+
92+
</section>
93+
94+
<!-- /.breaking-changes -->
95+
96+
<section class="commits">
97+
98+
### Commits
99+
100+
<details>
101+
102+
- [`efe050d`](https://github.com/stdlib-js/stdlib/commit/efe050dbf3d17bd6929da255fa079c0324afc213) - **feat:** update minimum TypeScript version _(by Philipp Burckhardt)_
103+
104+
</details>
105+
106+
</section>
107+
108+
<!-- /.commits -->
109+
110+
<section class="contributors">
111+
112+
### Contributors
113+
114+
A total of 1 person contributed to this release. Thank you to this contributor:
115+
116+
- Philipp Burckhardt
117+
118+
</section>
119+
120+
<!-- /.contributors -->
121+
122+
</section>
123+
124+
<!-- /.release -->
125+
126+
<section class="release" id="v0.0.9">
127+
128+
## 0.0.9 (2022-02-16)
129+
130+
No changes reported for this release.
131+
132+
</section>
133+
134+
<!-- /.release -->
135+
136+
<section class="release" id="v0.0.8">
137+
138+
## 0.0.8 (2021-08-22)
139+
140+
No changes reported for this release.
141+
142+
</section>
143+
144+
<!-- /.release -->
145+
146+
<section class="release" id="v0.0.7">
147+
148+
## 0.0.7 (2021-07-10)
149+
150+
No changes reported for this release.
151+
152+
</section>
153+
154+
<!-- /.release -->
155+
156+
<section class="release" id="v0.0.6">
157+
158+
## 0.0.6 (2021-07-07)
159+
160+
No changes reported for this release.
161+
162+
</section>
163+
164+
<!-- /.release -->
165+
166+
<section class="release" id="v0.0.5">
167+
168+
## 0.0.5 (2021-06-19)
169+
170+
No changes reported for this release.
171+
172+
</section>
173+
174+
<!-- /.release -->
175+
176+
<section class="release" id="v0.0.4">
177+
178+
## 0.0.4 (2021-06-19)
179+
180+
No changes reported for this release.
181+
182+
</section>
183+
184+
<!-- /.release -->
185+
186+
<section class="release" id="v0.0.3">
187+
188+
## 0.0.3 (2021-06-18)
189+
190+
No changes reported for this release.
191+
192+
</section>
193+
194+
<!-- /.release -->
195+
196+
<section class="release" id="v0.0.2">
197+
198+
## 0.0.2 (2021-06-16)
199+
200+
No changes reported for this release.
201+
202+
</section>
203+
204+
<!-- /.release -->
205+
206+
<section class="release" id="v0.0.1">
207+
208+
## 0.0.1 (2021-06-15)
209+
210+
No changes reported for this release.
211+
212+
</section>
213+
214+
<!-- /.release -->
215+

0 commit comments

Comments
 (0)