Skip to content

Commit f3a21fe

Browse files
authored
Merge pull request #96 from postmanlabs/release/v1.0.0
Release version v1.0.0
2 parents 1a38668 + 0e8b47d commit f3a21fe

File tree

4 files changed

+55
-76
lines changed

4 files changed

+55
-76
lines changed

.github/workflows/test.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ jobs:
1010
runs-on: ubuntu-latest
1111
strategy:
1212
matrix:
13-
node-version: [16.x, 18.x, 20.x]
13+
node-version: [18.x, 20.x, 22.x]
1414
steps:
1515
- name: Get Code
1616
uses: actions/checkout@v3
@@ -19,4 +19,4 @@ jobs:
1919
with:
2020
node-version: ${{ matrix.node-version }}
2121
- run: npm ci
22-
- run: npm test
22+
- run: npm test

CHANGELOG.md

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,12 @@
22

33
## [Unreleased]
44

5+
## [v1.0.0] - 2025-03-10
6+
7+
### Breaking Changes
8+
9+
- Drop support for node < v18.
10+
511
## [v0.4.0] - 2024-07-10
612

713
### Chore
@@ -77,7 +83,9 @@ Newer releases follow the [Keep a Changelog](https://keepachangelog.com/en/1.0.0
7783

7884
- Base release
7985

80-
[Unreleased]: https://github.com/postmanlabs/raml1-to-postman/compare/v0.4.0...HEAD
86+
[Unreleased]: https://github.com/postmanlabs/raml1-to-postman/compare/v1.0.0...HEAD
87+
88+
[v1.0.0]: https://github.com/postmanlabs/raml1-to-postman/compare/v0.4.0...v1.0.0
8189

8290
[v0.4.0]: https://github.com/postmanlabs/raml1-to-postman/compare/v0.3.0...v0.4.0
8391

package-lock.json

Lines changed: 42 additions & 71 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "raml1-to-postman",
3-
"version": "0.4.0",
3+
"version": "1.0.0",
44
"description": "Converts RAML 1.0 files to postman v2 collection",
55
"homepage": "https://github.com/postmanlabs/raml1-to-postman",
66
"bugs": "https://github.com/postmanlabs/raml1-to-postman/issues",
@@ -43,7 +43,7 @@
4343
"async": "3.2.5",
4444
"lodash": "4.17.21",
4545
"path-browserify": "1.0.1",
46-
"postman-collection": "^4.4.0"
46+
"postman-collection": "^5.0.0"
4747
},
4848
"devDependencies": {
4949
"chai": "4.1.2",

0 commit comments

Comments
 (0)