Skip to content

Commit

Permalink
v4.3.0
Browse files Browse the repository at this point in the history
  • Loading branch information
nchaulet committed Feb 10, 2024
1 parent 508ded3 commit f6fecdc
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 4 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/test_integration.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ name: Test integration CI

on:
workflow_dispatch:

jobs:
build:
runs-on: ubuntu-latest
Expand All @@ -12,7 +12,7 @@ jobs:
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v2
with:
node-version: 16.x
node-version: 18.x
- name: Install dependencies
run: npm install
- run: npm run test:integration
Expand Down
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -145,3 +145,9 @@ Add suppot for osmServer option

- Handle unathorized error from HERE when a wrong API Key is provided. Related with: Crash with HereGeocoder when bad apiKey given #342
- Fix limit param for TomTom #342

# 4.3.0

- Remove support for node < 18
- Add new geocoder APlace.io (#349)
- Handling undefined values in here geocoder (#351)
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
{
"name": "node-geocoder",
"version": "4.2.0",
"version": "4.3.0",
"description": "Node Geocoder, node geocoding library, supports google maps, mapquest, open street map, tom tom, promise",
"main": "index.js",
"engines": {
"node": ">=12"
"node": ">=18"
},
"scripts": {
"test": "jest --maxWorkers=2 ./test",
Expand Down

0 comments on commit f6fecdc

Please sign in to comment.