Skip to content

Commit

Permalink
Release 1.4.1
Browse files Browse the repository at this point in the history
Fixes an issue with the new npx-based install process.
  • Loading branch information
stelcheck committed Dec 15, 2017
1 parent 3293367 commit fe51053
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 9 deletions.
16 changes: 9 additions & 7 deletions RELEASE_GUIDE.md
Expand Up @@ -22,10 +22,11 @@ If you are making a minor release that is equal to the current state of the `mas

1. Compare changes with the previous release: `git log master...1.2.3` (replace `1.2.3` by the previous version tag)
2. Run: `npm version minor`. This will have:
1. Updated the version in package.json
2. Regenerated documentation
3. Committed (git)
4. Tagged (git)
1. Updated the version in package.
2. Updated the version in package-lock.json
3. Regenerated documentation
4. Committed (git)
5. Tagged (git)
3. Run: `git push upstream master --tags`
4. Write up the release notes at the new tag on https://github.com/mage/mage/releases/new
5. Run: `npm publish`
Expand All @@ -39,9 +40,10 @@ To make a patch-release, we cherry-pick commits from master into a temporary bra
3. Pick all commits you wish to include: `git cherry-pick COMMITHASH` (replace `COMMITHASH`)
4. Run: `npm version patch`. This will have:
1. Updated the version in package.json
2. Regenerated documentation
3. Committed (git)
4. Tagged (git)
2. Updated the version in package-lock.json
3. Regenerated documentation
4. Committed (git)
5. Tagged (git)
5. Run: `git push upstream 1.2.4` (replace `1.2.4` by the new version tag)
6. Write up the release notes at the new tag on https://github.com/mage/mage/releases/new
7. Run: `npm publish`
Expand Down
2 changes: 1 addition & 1 deletion package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
@@ -1,7 +1,7 @@
{
"name": "mage",
"description": "MAGE game development platform for Node.js",
"version": "1.4.0",
"version": "1.4.1",
"author": "Wizcorp K.K. <info@wizcorp.jp>",
"homepage": "https://wizcorp.jp/mage/",
"bugs": {
Expand Down

0 comments on commit fe51053

Please sign in to comment.