Skip to content

Latest commit

 

History

History
40 lines (30 loc) · 886 Bytes

MAINTAIN.md

File metadata and controls

40 lines (30 loc) · 886 Bytes

Publish new version

1. develop to master

Send pull request develop to master on github repository and merge it. https://github.com/summernote/summernote/compare/master...develop

2. Build dist files

Build dist files and push to master

# change branch
git checkout master
# fetch all changes
git pull
# build dist files and binary(.zip) for release post
grunt dist
# Push new dist files to remote repository.
git commit -a -m "Update dist files"
git push origin

3. Release new version

Post release note with new tag version on github

https://github.com/summernote/summernote/releases/new

4. Publish

Publish on npm

npm publish

### 05. Update summernote.github.io
Update summernote version in _config.yml.

### 06. Update connector
 - [summernote-rails](https://github.com/summernote/summernote-rails/blob/master/MAINTAIN.md)