Skip to content

Commit 1ad7934

Browse files
Fix a packaging issue and prepare new release
1 parent 9db8e4f commit 1ad7934

File tree

3 files changed

+13
-5
lines changed

3 files changed

+13
-5
lines changed

CHANGELOG.md

+6-1
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77

88
## [Unreleased]
99

10+
## [5.0.1] - 2024-03-17
11+
### Fixed
12+
- Fix a packaging issue.
13+
1014
## [5.0.0] - 2024-03-17
1115
### Added
1216
- New `IpregistryClient#batchLookupAsns` method.
@@ -157,7 +161,8 @@ https://github.com/ipregistry/ipregistry-javascript#configuring-cache-max-age
157161
## [0.9.1] - 2019-07-23
158162
- First public release.
159163

160-
[Unreleased]: https://github.com/ipregistry/ipregistry-javascript/compare/5.0.0...HEAD
164+
[Unreleased]: https://github.com/ipregistry/ipregistry-javascript/compare/5.0.1...HEAD
165+
[5.0.1]: https://github.com/ipregistry/ipregistry-javascript/compare/5.0.0...5.0.1
161166
[5.0.0]: https://github.com/ipregistry/ipregistry-javascript/compare/4.5.0...5.0.0
162167
[4.5.0]: https://github.com/ipregistry/ipregistry-javascript/compare/4.4.2...4.5.0
163168
[4.4.2]: https://github.com/ipregistry/ipregistry-javascript/compare/4.4.1...4.4.2

package.json

+6-3
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,15 @@
11
{
22
"name": "@ipregistry/client",
3-
"description": "Official Ipregistry Javascript Library (ES5, ES6+, TypeScript).",
4-
"version": "5.0.0",
3+
"description": "Official Ipregistry Javascript Library.",
4+
"version": "5.0.1",
55
"type": "module",
66
"main": "./dist/index.js",
7-
"browser": "./dist/browser/index.js",
87
"module": "./dist/esm/index.js",
98
"types": "./dist/index.d.ts",
9+
"exports": {
10+
"import": "./dist/esm/index.js",
11+
"require": "./dist/index.js"
12+
},
1013
"homepage": "https://ipregistry.co",
1114
"license": "Apache-2.0",
1215
"keywords": [

tsconfig.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,6 @@
2121
"strictPropertyInitialization": true,
2222
"target": "es2017"
2323
},
24-
"include": ["integration_test/**/*.ts", "src/**/*.ts"],
24+
"include": ["src/**/*.ts"],
2525
"exclude": ["node_modules", "**/*.spec.ts"]
2626
}

0 commit comments

Comments
 (0)