diff --git a/CHANGELOG.md b/CHANGELOG.md index 5a36535..ec830da 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,12 @@ # Changelog +## [1.10.0](https://github.com/FrontEndDev-org/publish-node-package-action/compare/v1.9.1...v1.10.0) (2024-07-23) + + +### Features + +* rename rewritePkgJSON to main and update action.yml script ([a41596c](https://github.com/FrontEndDev-org/publish-node-package-action/commit/a41596ca9bf4b0ba2721fc78a35a523b39c82d0a)) + ## [1.9.1](https://github.com/FrontEndDev-org/publish-node-package-action/compare/v1.9.0...v1.9.1) (2024-07-23) diff --git a/action.yml b/action.yml index 5b19558..9b5f511 100644 --- a/action.yml +++ b/action.yml @@ -62,7 +62,7 @@ runs: const path = require("path"); async function main(cwd, context) { var _a; - console.log("publish-node-package-action", "1.9.0"); + console.log("publish-node-package-action", "1.10.0"); const owner = (_a = context.payload.repository) == null ? void 0 : _a.owner.login; if (!owner) { throw new Error("No owner found in context"); diff --git a/dist/index.cjs b/dist/index.cjs index 2e5e6ab..ccf00f9 100644 --- a/dist/index.cjs +++ b/dist/index.cjs @@ -5,7 +5,7 @@ const fs = require("fs"); const path = require("path"); async function main(cwd, context) { var _a; - console.log("publish-node-package-action", "1.9.1"); + console.log("publish-node-package-action", "1.10.0"); const owner = (_a = context.payload.repository) == null ? void 0 : _a.owner.login; if (!owner) { throw new Error("No owner found in context"); diff --git a/package-lock.json b/package-lock.json index eb3b782..7574fc6 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "publish-node-package-action", - "version": "1.9.1", + "version": "1.10.0", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "publish-node-package-action", - "version": "1.9.1", + "version": "1.10.0", "license": "MIT", "dependencies": { "@actions/github": "^6.0.0", diff --git a/package.json b/package.json index 51cfab1..af21b66 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "publish-node-package-action", - "version": "1.9.1", + "version": "1.10.0", "description": "Publish a NodeJS package to NPM or GitHub Packages", "scripts": { "prepare": "husky install",