diff --git a/CHANGELOG.md b/CHANGELOG.md index 4443841..90a1422 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,11 @@ #### N.N.N - YYYY-MM-DD +#### 1.1.3 - 2022-05-29 + +- chore: publish npm package in @nictool namespace + + #### 1.1.2 - 2022-05-28 - chore(ci): replace .release with submodule diff --git a/DEVELOP.md b/DEVELOP.md index 214eb01..1ff34d7 100644 --- a/DEVELOP.md +++ b/DEVELOP.md @@ -1,16 +1,23 @@ # Release process -in your feature branch: (git checkout -b release-N.N.N) +In your local repo: - make your changes - git add . -- .release/do.sh {major|minor|patch} +- `.release/do.sh` {major|minor|patch} - fill in the blanks in CHANGELOG.md -- .release/push.sh +- `.release/push.sh` Upon merge to `master`: - the new version will be published to NPM. - a GitHub release will be published. - a release tag will be committed to the repo. + +## Clean + +`.release/cleanup.sh` + +- will switch to the master branch +- delete the release branch diff --git a/package.json b/package.json index f69a2bd..cf7e3d3 100644 --- a/package.json +++ b/package.json @@ -1,12 +1,12 @@ { - "name": "dns-resource-record", - "version": "1.1.2", + "name": "@nictool/dns-resource-record", + "version": "1.1.3", "description": "DNS Resource Records", "main": "index.js", "type": "module", "scripts": { - "lint": "npx eslint *.js lib/*.js rr/*.js test/*.js", - "lintfix": "npx eslint --fix *.js lib/*.js rr/*.js test/*.js", + "lint": "npx eslint *.js lib rr test", + "lintfix": "npx eslint --fix *.js lib rr test", "test": "npx mocha", "versions": "npx dependency-version-checker check" },