Skip to content

Commit

Permalink
Fix a packaging issue and prepare new release
Browse files Browse the repository at this point in the history
  • Loading branch information
lpellegr committed Mar 17, 2024
1 parent 9db8e4f commit 1ad7934
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 5 deletions.
7 changes: 6 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [5.0.1] - 2024-03-17
### Fixed
- Fix a packaging issue.

## [5.0.0] - 2024-03-17
### Added
- New `IpregistryClient#batchLookupAsns` method.
Expand Down Expand Up @@ -157,7 +161,8 @@ https://github.com/ipregistry/ipregistry-javascript#configuring-cache-max-age
## [0.9.1] - 2019-07-23
- First public release.

[Unreleased]: https://github.com/ipregistry/ipregistry-javascript/compare/5.0.0...HEAD
[Unreleased]: https://github.com/ipregistry/ipregistry-javascript/compare/5.0.1...HEAD
[5.0.1]: https://github.com/ipregistry/ipregistry-javascript/compare/5.0.0...5.0.1
[5.0.0]: https://github.com/ipregistry/ipregistry-javascript/compare/4.5.0...5.0.0
[4.5.0]: https://github.com/ipregistry/ipregistry-javascript/compare/4.4.2...4.5.0
[4.4.2]: https://github.com/ipregistry/ipregistry-javascript/compare/4.4.1...4.4.2
Expand Down
9 changes: 6 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,12 +1,15 @@
{
"name": "@ipregistry/client",
"description": "Official Ipregistry Javascript Library (ES5, ES6+, TypeScript).",
"version": "5.0.0",
"description": "Official Ipregistry Javascript Library.",
"version": "5.0.1",
"type": "module",
"main": "./dist/index.js",
"browser": "./dist/browser/index.js",
"module": "./dist/esm/index.js",
"types": "./dist/index.d.ts",
"exports": {
"import": "./dist/esm/index.js",
"require": "./dist/index.js"
},
"homepage": "https://ipregistry.co",
"license": "Apache-2.0",
"keywords": [
Expand Down
2 changes: 1 addition & 1 deletion tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,6 @@
"strictPropertyInitialization": true,
"target": "es2017"
},
"include": ["integration_test/**/*.ts", "src/**/*.ts"],
"include": ["src/**/*.ts"],
"exclude": ["node_modules", "**/*.spec.ts"]
}

0 comments on commit 1ad7934

Please sign in to comment.