Skip to content

Commit 5d006e6

Browse files
committed
Release v0.2.2
1 parent a104431 commit 5d006e6

File tree

8 files changed

+248
-34
lines changed

8 files changed

+248
-34
lines changed

.gitattributes

+23-6
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/productionize.yml

+10-10
Original file line numberDiff line numberDiff line change
@@ -94,8 +94,8 @@ jobs:
9494
node -e "var pkg = require( './package.json' ); pkg.dependencies[ '@stdlib/error-tools-fmtprodmsg' ] = '^$PKG_VERSION'; require( 'fs' ).writeFileSync( 'package.json', JSON.stringify( pkg, null, 2 ) );"
9595
fi
9696
97-
# Configure git:
98-
- name: 'Configure git'
97+
# Configure Git:
98+
- name: 'Configure Git'
9999
run: |
100100
git config --local user.email "[email protected]"
101101
git config --local user.name "stdlib-bot"
@@ -191,8 +191,8 @@ jobs:
191191
# Pin action to full length commit SHA
192192
uses: actions/checkout@8ade135a41bc03ea155e62e844d188df1ea18608 # v4.1.0
193193

194-
# Configure git:
195-
- name: 'Configure git'
194+
# Configure Git:
195+
- name: 'Configure Git'
196196
run: |
197197
git config --local user.email "[email protected]"
198198
git config --local user.name "stdlib-bot"
@@ -366,8 +366,8 @@ jobs:
366366
# Pin action to full length commit SHA
367367
uses: actions/checkout@8ade135a41bc03ea155e62e844d188df1ea18608 # v4.1.0
368368

369-
# Configure git:
370-
- name: 'Configure git'
369+
# Configure Git:
370+
- name: 'Configure Git'
371371
run: |
372372
git config --local user.email "[email protected]"
373373
git config --local user.name "stdlib-bot"
@@ -539,8 +539,8 @@ jobs:
539539
# Pin action to full length commit SHA
540540
uses: actions/checkout@8ade135a41bc03ea155e62e844d188df1ea18608 # v4.1.0
541541

542-
# Configure git:
543-
- name: 'Configure git'
542+
# Configure Git:
543+
- name: 'Configure Git'
544544
run: |
545545
git config --local user.email "[email protected]"
546546
git config --local user.name "stdlib-bot"
@@ -735,8 +735,8 @@ jobs:
735735
echo "bump=true" >> $GITHUB_OUTPUT
736736
fi
737737
738-
# Configure git:
739-
- name: 'Configure git'
738+
# Configure Git:
739+
- name: 'Configure Git'
740740
if: steps.check-if-bump.outputs.bump
741741
run: |
742742
git config --local user.email "[email protected]"

.github/workflows/publish.yml

+7-3
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 "[email protected]"
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

.npmrc

+2-2
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

+184-1
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,187 @@
22

33
> Package changelog.
44
5-
See [GitHub Releases](https://github.com/stdlib-js/stats-base-dists-betaprime-logcdf/releases) for the changelog.
5+
<section class="release" id="v0.2.2">
6+
7+
## 0.2.2 (2024-07-28)
8+
9+
<section class="commits">
10+
11+
### Commits
12+
13+
<details>
14+
15+
- [`41d41e9`](https://github.com/stdlib-js/stdlib/commit/41d41e959b4eaad3c631e6898e3144a4015a5458) - **test:** include trailing newlines in Julia-generated JSON fixtures _(by Philipp Burckhardt)_
16+
- [`9ed7d0e`](https://github.com/stdlib-js/stdlib/commit/9ed7d0e7d57edb5ad0dfb65c944bed87d475cbf3) - **chore:** add missing trailing newlines _(by Philipp Burckhardt)_
17+
18+
</details>
19+
20+
</section>
21+
22+
<!-- /.commits -->
23+
24+
<section class="contributors">
25+
26+
### Contributors
27+
28+
A total of 1 person contributed to this release. Thank you to this contributor:
29+
30+
- Philipp Burckhardt
31+
32+
</section>
33+
34+
<!-- /.contributors -->
35+
36+
</section>
37+
38+
<!-- /.release -->
39+
40+
<section class="release" id="v0.2.1">
41+
42+
## 0.2.1 (2024-02-24)
43+
44+
No changes reported for this release.
45+
46+
</section>
47+
48+
<!-- /.release -->
49+
50+
<section class="release" id="v0.2.0">
51+
52+
## 0.2.0 (2024-02-14)
53+
54+
No changes reported for this release.
55+
56+
</section>
57+
58+
<!-- /.release -->
59+
60+
<section class="release" id="v0.1.0">
61+
62+
## 0.1.0 (2023-09-24)
63+
64+
<section class="features">
65+
66+
### Features
67+
68+
- [`81ca3ab`](https://github.com/stdlib-js/stdlib/commit/81ca3ab33585150e98a402b3e6d57beb1ec36864) - update minimum TypeScript version
69+
70+
</section>
71+
72+
<!-- /.features -->
73+
74+
<section class="breaking-changes">
75+
76+
### BREAKING CHANGES
77+
78+
- [`81ca3ab`](https://github.com/stdlib-js/stdlib/commit/81ca3ab33585150e98a402b3e6d57beb1ec36864): update minimum TypeScript version
79+
- [`81ca3ab`](https://github.com/stdlib-js/stdlib/commit/81ca3ab33585150e98a402b3e6d57beb1ec36864): update minimum TypeScript version to 4.1
80+
81+
- To migrate, users should upgrade their TypeScript version to at least version 4.1.
82+
83+
</section>
84+
85+
<!-- /.breaking-changes -->
86+
87+
<section class="commits">
88+
89+
### Commits
90+
91+
<details>
92+
93+
- [`81ca3ab`](https://github.com/stdlib-js/stdlib/commit/81ca3ab33585150e98a402b3e6d57beb1ec36864) - **feat:** update minimum TypeScript version _(by Philipp Burckhardt)_
94+
- [`d5fa8e8`](https://github.com/stdlib-js/stdlib/commit/d5fa8e8a6267a837a25a7027e9fe3e847bc2d1c5) - **test:** use strictEqual checks _(by Philipp Burckhardt)_
95+
- [`37f032d`](https://github.com/stdlib-js/stdlib/commit/37f032d4a571f667ea99f6f52f60b5d736c627f3) - **docs:** render equations via math code blocks _(by Philipp Burckhardt)_
96+
97+
</details>
98+
99+
</section>
100+
101+
<!-- /.commits -->
102+
103+
<section class="contributors">
104+
105+
### Contributors
106+
107+
A total of 1 person contributed to this release. Thank you to this contributor:
108+
109+
- Philipp Burckhardt
110+
111+
</section>
112+
113+
<!-- /.contributors -->
114+
115+
</section>
116+
117+
<!-- /.release -->
118+
119+
<section class="release" id="v0.0.7">
120+
121+
## 0.0.7 (2022-07-08)
122+
123+
No changes reported for this release.
124+
125+
</section>
126+
127+
<!-- /.release -->
128+
129+
<section class="release" id="v0.0.6">
130+
131+
## 0.0.6 (2022-02-16)
132+
133+
No changes reported for this release.
134+
135+
</section>
136+
137+
<!-- /.release -->
138+
139+
<section class="release" id="v0.0.5">
140+
141+
## 0.0.5 (2021-08-22)
142+
143+
No changes reported for this release.
144+
145+
</section>
146+
147+
<!-- /.release -->
148+
149+
<section class="release" id="v0.0.4">
150+
151+
## 0.0.4 (2021-07-07)
152+
153+
No changes reported for this release.
154+
155+
</section>
156+
157+
<!-- /.release -->
158+
159+
<section class="release" id="v0.0.3">
160+
161+
## 0.0.3 (2021-06-28)
162+
163+
No changes reported for this release.
164+
165+
</section>
166+
167+
<!-- /.release -->
168+
169+
<section class="release" id="v0.0.2">
170+
171+
## 0.0.2 (2021-06-16)
172+
173+
No changes reported for this release.
174+
175+
</section>
176+
177+
<!-- /.release -->
178+
179+
<section class="release" id="v0.0.1">
180+
181+
## 0.0.1 (2021-06-15)
182+
183+
No changes reported for this release.
184+
185+
</section>
186+
187+
<!-- /.release -->
188+

CONTRIBUTORS

+11-1
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@
55
Adarsh Palaskar <[email protected]>
66
Aditya Sapra <[email protected]>
77
AgPriyanshu18 <[email protected]>
8+
Aleksandr <[email protected]>
89
Ali Salesi <[email protected]>
910
Aman Bhansali <[email protected]>
1011
Amit Jimiwal <[email protected]>
@@ -18,13 +19,15 @@ Chinmay Joshi <[email protected]>
1819
Christopher Dambamuromo <[email protected]>
1920
2021
Daniel Killenberger <[email protected]>
22+
Daniel Yu <[email protected]>
2123
Dominik Moritz <[email protected]>
2224
Dorrin Sotoudeh <[email protected]>
2325
EuniceSim142 <[email protected]>
2426
Frank Kovacs <[email protected]>
2527
Golden Kumar <[email protected]>
2628
Gunj Joshi <[email protected]>
2729
Harshita Kalani <[email protected]>
30+
Hridyanshu <[email protected]>
2831
Jaimin Godhani <[email protected]>
2932
James Gelok <[email protected]>
3033
Jaysukh Makvana <[email protected]>
@@ -48,6 +51,7 @@ Muhammad Haris <[email protected]>
4851
Naresh Jagadeesan <[email protected]>
4952
NightKnight <[email protected]>
5053
Nithin Katta <[email protected]>
54+
Nourhan Hasan <[email protected]>
5155
Ognjen Jevremović <[email protected]>
5256
Oneday12323 <[email protected]>
5357
Philipp Burckhardt <[email protected]>
@@ -60,6 +64,7 @@ Pushpendra Chandravanshi <[email protected]>
6064
Raunak Kumar Gupta <[email protected]>
6165
Rejoan Sardar <[email protected]>
6266
Ricky Reusser <[email protected]>
67+
Ridam Garg <[email protected]>
6368
Robert Gislason <[email protected]>
6469
Roman Stetsyk <[email protected]>
6570
@@ -69,8 +74,11 @@ Seyyed Parsa Neshaei <[email protected]>
6974
Shashank Shekhar Singh <[email protected]>
7075
7176
Shraddheya Shendre <[email protected]>
77+
Shubh Mehta <[email protected]>
7278
Shubham Mishra <[email protected]>
73-
Snehil Shah <[email protected]>
79+
Sivam Das <[email protected]>
80+
Snehil Shah <[email protected]>
81+
Soumajit Chatterjee <[email protected]>
7482
Spandan Barve <[email protected]>
7583
Stephannie Jiménez Gacha <[email protected]>
7684
Suraj kumar <[email protected]>
@@ -79,8 +87,10 @@ Tudor Pagu <[email protected]>
7987
Utkarsh <http://[email protected]>
8088
Utkarsh Raj <[email protected]>
8189
Varad Gupta <[email protected]>
90+
Xiaochuan Ye <[email protected]>
8291
Yernar Yergaziyev <[email protected]>
8392
8493
nishant-s7 <[email protected]>
8594
orimiles5 <[email protected]>
95+
8696

README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -248,8 +248,8 @@ Copyright &copy; 2016-2024. The Stdlib [Authors][stdlib-authors].
248248
[npm-image]: http://img.shields.io/npm/v/@stdlib/stats-base-dists-betaprime-logcdf.svg
249249
[npm-url]: https://npmjs.org/package/@stdlib/stats-base-dists-betaprime-logcdf
250250

251-
[test-image]: https://github.com/stdlib-js/stats-base-dists-betaprime-logcdf/actions/workflows/test.yml/badge.svg?branch=main
252-
[test-url]: https://github.com/stdlib-js/stats-base-dists-betaprime-logcdf/actions/workflows/test.yml?query=branch:main
251+
[test-image]: https://github.com/stdlib-js/stats-base-dists-betaprime-logcdf/actions/workflows/test.yml/badge.svg?branch=v0.2.2
252+
[test-url]: https://github.com/stdlib-js/stats-base-dists-betaprime-logcdf/actions/workflows/test.yml?query=branch:v0.2.2
253253

254254
[coverage-image]: https://img.shields.io/codecov/c/github/stdlib-js/stats-base-dists-betaprime-logcdf/main.svg
255255
[coverage-url]: https://codecov.io/github/stdlib-js/stats-base-dists-betaprime-logcdf?branch=main

0 commit comments

Comments
 (0)