Skip to content

Commit

Permalink
chore: version bumps
Browse files Browse the repository at this point in the history
  • Loading branch information
Justintime50 committed Jul 16, 2024
1 parent 7ad3eb9 commit 6b4fe14
Show file tree
Hide file tree
Showing 4 changed files with 53 additions and 43 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,11 +7,11 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout Repository
uses: actions/checkout@v3
uses: actions/checkout@v4
- name: Setup Node
uses: actions/setup-node@v3
uses: actions/setup-node@v4
with:
node-version: '18'
node-version: '22'
- name: Install dependencies
run: npm install
- name: Lint project
Expand All @@ -22,12 +22,12 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
nodeversion: ['12', '14', '16', '18']
nodeversion: ['16', '18', '20', '22']
steps:
- name: Checkout Repository
uses: actions/checkout@v3
uses: actions/checkout@v4
- name: Setup Node
uses: actions/setup-node@v3
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.nodeversion }}
- name: Install dependencies
Expand Down
4 changes: 3 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,9 @@
# CHANGELOG

## v1.2.1 (2024-07-16)
## v2.0.0 (2024-07-16)

- Drops support for Node < 16
- Adds support for Node 20, 22
- Bumps dependencies

## v1.2.0 (2022-02-05)
Expand Down
72 changes: 40 additions & 32 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 4 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
{
"name": "dad",
"version": "1.2.1",
"version": "2.0.0",
"description": "Dummy Address Data (DAD) - Real addresses from all around the world.",
"main": "index.js",
"engines": {
"node": ">=12"
"node": ">=16"
},
"scripts": {
"format": "prettier --config node_modules/justintime50-styles/src/javascript/.prettierrc.yaml --write .",
Expand All @@ -26,8 +26,8 @@
"author": "Justintime50",
"license": "MIT",
"devDependencies": {
"chai": "^5.1",
"eslint": "^8.40",
"chai": "^4.4",
"eslint": "^8.57",
"eslint-plugin-json": "^4.0",
"justintime50-styles": "^0.6.0",
"mocha": "^10.6",
Expand Down

0 comments on commit 6b4fe14

Please sign in to comment.