Skip to content

Commit 15b8d61

Browse files
github-actions[bot]Twixes
authored andcommitted
chore(main): release 1.0.0 (#11)
Co-Authored-By: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
1 parent 51bb1df commit 15b8d61

File tree

4 files changed

+22
-7
lines changed

4 files changed

+22
-7
lines changed

.github/workflows/versioning.yml

Lines changed: 7 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@ on:
66
permissions:
77
contents: write
88
pull-requests: write
9+
id-token: write # Required for OIDC
910

1011
name: Versioning
1112

@@ -23,12 +24,13 @@ jobs:
2324
name: Publish
2425
runs-on: ubuntu-latest
2526
steps:
26-
- uses: actions/checkout@v3
27-
- uses: pnpm/action-setup@v2
28-
- uses: actions/setup-node@v3
27+
- uses: actions/checkout@v4
28+
- uses: pnpm/action-setup@v4
29+
- uses: actions/setup-node@v4
2930
with:
3031
cache: 'pnpm'
32+
registry-url: 'https://registry.npmjs.org'
33+
- name: Update npm to latest
34+
run: npm install -g npm@latest
3135
- run: pnpm install
3236
- run: npm publish
33-
env:
34-
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}

.release-please-manifest.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
{
2-
".": "0.2.1"
2+
".": "1.0.0"
33
}

CHANGELOG.md

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,18 @@
11
# Changelog
22

3+
## [1.0.0](https://github.com/Twixes/pip-requirements-js/compare/v0.2.1...v1.0.0) (2025-09-17)
4+
5+
6+
### Features
7+
8+
* Add `includeLocations` parsing option ([3476fe7](https://github.com/Twixes/pip-requirements-js/commit/3476fe7e34fd606a4fedd0268c088eaf0c646b5b))
9+
* Include version specs & extras in loose mode ([3476fe7](https://github.com/Twixes/pip-requirements-js/commit/3476fe7e34fd606a4fedd0268c088eaf0c646b5b))
10+
11+
12+
### Miscellaneous Chores
13+
14+
* **main:** release 1.0.0 ([3891674](https://github.com/Twixes/pip-requirements-js/commit/389167428a8c8289f47eb93a82f56a440b83f760))
15+
316
## [0.2.1](https://github.com/Twixes/pip-requirements-js/compare/v0.2.0...v0.2.1) (2023-08-01)
417

518

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "pip-requirements-js",
3-
"version": "0.2.1",
3+
"version": "1.0.0",
44
"description": "A robust parser for requirements.txt files",
55
"keywords": [
66
"pip",

0 commit comments

Comments
 (0)