Skip to content

Commit 92be5c9

Browse files
chore(release): 2.7.1 [skip ci]
## [2.7.1](v2.7.0...v2.7.1) (2025-03-22) ### Bug Fixes * update linting configuration to ignore examples directory and fix module loading ([f334d33](f334d33))
1 parent 7f1ecb1 commit 92be5c9

3 files changed

Lines changed: 9 additions & 2 deletions

File tree

CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,10 @@
1+
## [2.7.1](https://github.com/aashari/nodejs-geocoding/compare/v2.7.0...v2.7.1) (2025-03-22)
2+
3+
4+
### Bug Fixes
5+
6+
* update linting configuration to ignore examples directory and fix module loading ([f334d33](https://github.com/aashari/nodejs-geocoding/commit/f334d337eeb728aac958d1bfa7d0bd83c3343ba9))
7+
18
# [2.7.0](https://github.com/aashari/nodejs-geocoding/compare/v2.6.0...v2.7.0) (2025-03-22)
29

310

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@aashari/nodejs-geocoding",
3-
"version": "2.7.0",
3+
"version": "2.7.1",
44
"description": "A lightweight TypeScript/Node.js library for geocoding and reverse geocoding operations with multilingual support",
55
"main": "dist/index.js",
66
"types": "dist/index.d.ts",

src/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ import { Location } from './location.interface';
22
import { get } from './request.handler';
33

44
// Package version - will be updated automatically by the release process
5-
export const VERSION = '2.7.0';
5+
export const VERSION = '2.7.1';
66

77
// Define types for the JSON response
88
type GoogleMapsJsonResponse = Record<string, unknown>;

0 commit comments

Comments
 (0)