Skip to content

Commit 3d2ef2e

Browse files
committed
upgrade to 3.4.6 to fix bad dist push in 3.4.5
1 parent d2149d6 commit 3d2ef2e

File tree

7 files changed

+56
-25
lines changed

7 files changed

+56
-25
lines changed

.github/workflows/cd_npm.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,7 @@ jobs:
2727
node-version: 16
2828
registry-url: https://registry.npmjs.org/
2929
- run: npm ci
30-
- run: npm publish
30+
- run: npm run build
31+
- run: npm publish --dry-run
3132
env:
3233
NODE_AUTH_TOKEN: ${{secrets.NPM_TOKEN}}

CHANGELOG.md

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,11 @@
11
# CHANGELOG
22

3-
## 3.4.5
3+
## 3.4.6
4+
5+
- Last version (3.4.5) incorrectly published a bad dist output due to buggy
6+
CI/CD. This fixes it.
7+
8+
## 3.4.5 (DEPRECATED)
49

510
- Updated tests.
611

package-lock.json

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "node-ipinfo",
3-
"version": "3.4.5",
3+
"version": "3.4.6",
44
"description": "Official Node client library for IPinfo",
55
"main": "dist/src/index.js",
66
"types": "dist/src/index.d.ts",

src/version.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
1-
const VERSION = "3.4.5";
1+
const VERSION = "3.4.6";
22

33
export default VERSION;

test-app/package-lock.json

Lines changed: 43 additions & 18 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

test-app/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
"author": "",
1010
"license": "ISC",
1111
"dependencies": {
12-
"node-ipinfo": "^3.1.0",
12+
"node-ipinfo": "3.4.5",
1313
"typescript": "^4.4.2"
1414
}
1515
}

0 commit comments

Comments
 (0)