Skip to content

Commit f06555f

Browse files
chore(release): 2.4.0 [skip ci]
# [2.4.0](v2.3.0...v2.4.0) (2025-03-22) ### Bug Fixes * prioritize GitHub Packages publishing and make npm publishing optional ([8bb26aa](8bb26aa)) * update workflow configuration for GitHub Packages and npm publishing ([3326323](3326323)) ### Features * add GitHub Packages publishing alongside npm ([c0f3698](c0f3698))
1 parent 3326323 commit f06555f

3 files changed

Lines changed: 15 additions & 2 deletions

File tree

CHANGELOG.md

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,16 @@
1+
# [2.4.0](https://github.com/aashari/nodejs-geocoding/compare/v2.3.0...v2.4.0) (2025-03-22)
2+
3+
4+
### Bug Fixes
5+
6+
* prioritize GitHub Packages publishing and make npm publishing optional ([8bb26aa](https://github.com/aashari/nodejs-geocoding/commit/8bb26aa8fa4c7f441ea8a9352fc686f3a577b8a9))
7+
* update workflow configuration for GitHub Packages and npm publishing ([3326323](https://github.com/aashari/nodejs-geocoding/commit/33263231e714a328d5ca67f84935e8672bc7c2d1))
8+
9+
10+
### Features
11+
12+
* add GitHub Packages publishing alongside npm ([c0f3698](https://github.com/aashari/nodejs-geocoding/commit/c0f36987ffc7255938a782781fa8fd7be179bc1e))
13+
114
# [2.3.0](https://github.com/aashari/nodejs-geocoding/compare/v2.2.2...v2.3.0) (2025-03-22)
215

316

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.3.0",
3+
"version": "2.4.0",
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.3.0';
5+
export const VERSION = '2.4.0';
66

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

0 commit comments

Comments
 (0)