Skip to content

Commit

Permalink
Release: 0.2.0.rc2
Browse files Browse the repository at this point in the history
Release guidelines

0.2.0-rc.2

More release guidelines
  • Loading branch information
ashwinvis committed Oct 15, 2019
1 parent 61f0d78 commit 827422b
Show file tree
Hide file tree
Showing 6 changed files with 39 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .eslintrc.yml
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ rules:
max-depth: error
max-len: 'off'
max-lines: error
max-lines-per-function: error
max-lines-per-function: 'off'
max-nested-callbacks: error
max-params: error
max-statements: 'off'
Expand Down
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -3,3 +3,6 @@ package-lock.json
yarn.lock
yarn*.log
debug.html

# packages
*.tgz
6 changes: 5 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,8 @@
# 0.2.0.rc1 (2017-07-19)
# 0.2.0.rc2 (2019-10-15)

* Bug fix: PUT request and response for node>10

# 0.2.0.rc1 (2019-07-21)

* Optional MathJax support
* Apache 2.0 license
Expand Down
28 changes: 28 additions & 0 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
# Install in development mode

npm install -g .
npm install --only=dev .

# Making a release

Test

npm run test

Update changelog and finalize changes

git commit
npm version prerelease # or patch, minor, major

Package

npm run prepare # runs genversion
git add version.js
npm pack # automatically commits and tags

Deploy

git push
git push --tags
npm publish

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
"url": "git+https://github.com/suan/instant-markdown-d.git"
},
"description": "Instantly-updating Markdown Server",
"version": "0.2.0-rc.1",
"version": "0.2.0-rc.2",
"license": "Apache-2.0",
"homepage": "https://github.com/suan/instant-markdown-d",
"engines": {
Expand Down
2 changes: 1 addition & 1 deletion version.js
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
// generated by genversion
module.exports = '0.2.0-rc.1'
module.exports = '0.2.0-rc.2'

0 comments on commit 827422b

Please sign in to comment.