File tree 3 files changed +7
-3
lines changed
3 files changed +7
-3
lines changed Original file line number Diff line number Diff line change 2
2
3
3
All notable changes to ` geocodio-library-node ` will be documented in this file
4
4
5
+ ## 1.10.0 - 2025-05-20
6
+
7
+ - Added support for Geocodio API v1.8
8
+
5
9
## 1.9.1 - 2025-03-06
6
10
7
11
- Updated typescript definitions thanks to contribution by [ Adrastopoulos] ( https://github.com/Geocodio/geocodio-library-node/pull/43 )
Original file line number Diff line number Diff line change @@ -9,13 +9,13 @@ class Geocodio {
9
9
this . apiKey = apiKey || process . env . GEOCODIO_API_KEY || null ;
10
10
this . hostname =
11
11
hostname || process . env . GEOCODIO_HOSTNAME || "api.geocod.io" ;
12
- this . apiVersion = apiVersion || process . env . GEOCODIO_API_VERSION || "v1.7 " ;
12
+ this . apiVersion = apiVersion || process . env . GEOCODIO_API_VERSION || "v1.8 " ;
13
13
14
14
this . SINGLE_TIMEOUT_MS = 5000 ;
15
15
this . BATCH_TIMEOUT_MS = 30 * 60 * 1000 ;
16
16
17
17
this . HTTP_HEADERS = {
18
- "User-Agent" : "geocodio-library-node/1.8 .0" ,
18
+ "User-Agent" : "geocodio-library-node/1.10 .0" ,
19
19
Authorization : `Bearer ${ this . apiKey } `
20
20
} ;
21
21
Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " geocodio-library-node" ,
3
- "version" : " 1.9.1 " ,
3
+ "version" : " 1.10.0 " ,
4
4
"description" : " geocod.io geocoding API library" ,
5
5
"homepage" : " https://github.com/Geocodio/geocodio-library-node" ,
6
6
"author" : {
You can’t perform that action at this time.
0 commit comments