Skip to content

Commit 827422b

Browse files
committed
Release: 0.2.0.rc2
Release guidelines 0.2.0-rc.2 More release guidelines
1 parent 61f0d78 commit 827422b

File tree

6 files changed

+39
-4
lines changed

6 files changed

+39
-4
lines changed

.eslintrc.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@ rules:
8080
max-depth: error
8181
max-len: 'off'
8282
max-lines: error
83-
max-lines-per-function: error
83+
max-lines-per-function: 'off'
8484
max-nested-callbacks: error
8585
max-params: error
8686
max-statements: 'off'

.gitignore

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,3 +3,6 @@ package-lock.json
33
yarn.lock
44
yarn*.log
55
debug.html
6+
7+
# packages
8+
*.tgz

CHANGELOG.md

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,8 @@
1-
# 0.2.0.rc1 (2017-07-19)
1+
# 0.2.0.rc2 (2019-10-15)
2+
3+
* Bug fix: PUT request and response for node>10
4+
5+
# 0.2.0.rc1 (2019-07-21)
26

37
* Optional MathJax support
48
* Apache 2.0 license

CONTRIBUTING.md

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
# Install in development mode
2+
3+
npm install -g .
4+
npm install --only=dev .
5+
6+
# Making a release
7+
8+
Test
9+
10+
npm run test
11+
12+
Update changelog and finalize changes
13+
14+
git commit
15+
npm version prerelease # or patch, minor, major
16+
17+
Package
18+
19+
npm run prepare # runs genversion
20+
git add version.js
21+
npm pack # automatically commits and tags
22+
23+
Deploy
24+
25+
git push
26+
git push --tags
27+
npm publish
28+

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
"url": "git+https://github.com/suan/instant-markdown-d.git"
77
},
88
"description": "Instantly-updating Markdown Server",
9-
"version": "0.2.0-rc.1",
9+
"version": "0.2.0-rc.2",
1010
"license": "Apache-2.0",
1111
"homepage": "https://github.com/suan/instant-markdown-d",
1212
"engines": {

version.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
// generated by genversion
2-
module.exports = '0.2.0-rc.1'
2+
module.exports = '0.2.0-rc.2'

0 commit comments

Comments
 (0)