Skip to content

Commit acb00b2

Browse files
Prepare 6.0.2 release
1 parent 3a27b9c commit acb00b2

3 files changed

Lines changed: 10 additions & 2 deletions

File tree

CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,14 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
88
## [Unreleased]
99
- Require Node JS 20+.
1010

11+
## [6.0.2] - 2026-07-05
12+
### Fixed
13+
- Return `false` from `isError` and `isApiError` for non-object values instead of throwing a `TypeError`.
14+
15+
### Changed
16+
- Declare the package side-effect free to improve tree-shaking by bundlers.
17+
- Expose `package.json` through the package `exports` map.
18+
1119
## [6.0.1] - 2026-07-04
1220
### Fixed
1321
- Map request timeouts to a `ClientError` with message 'Request timed out'; a typo prevented the mapping from ever matching.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@ipregistry/client",
33
"description": "Official Ipregistry Javascript Library.",
4-
"version": "6.0.1",
4+
"version": "6.0.2",
55
"browser": "./dist/index.global.js",
66
"main": "./dist/index.js",
77
"module": "./dist/index.mjs",

src/version.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,4 +18,4 @@
1818
* The version of this library. Must be kept in sync with the version field of
1919
* package.json; a unit test enforces this.
2020
*/
21-
export const LIBRARY_VERSION = '6.0.1'
21+
export const LIBRARY_VERSION = '6.0.2'

0 commit comments

Comments
 (0)