Sha256: b6421eac26064e413739597330941d1f755c8fd8cf37cce382602fad495e98c9
Contents?: true
Size: 1.33 KB
Versions: 2
Compression:
Stored size: 1.33 KB
Contents
# Releasing a new version of html_to_prosemirror 1. Create a list of all the changes since the prior release 1. Compare the latest release to master using https://github.com/inputhq/html_to_prosemirror/compare/`${latest}`...master 1. Open the linked pull requests from all the `Merge pull request #...` commits 1. For all non-documentation PRs, copy title (including pull request number) into markdown list items 1. (optional, but nice) Sort into logical buckets, like "support for additional endpoints", "enhancements", "bugfixes" 1. Reorganize to put the pull request number at the start of the line 1. Ensure there are no breaking changes _(if there are breaking changes you'll need to create a release branch without those changes or bump the major version)_ 1. Update the version 1. Update the constant in `lib/html_to_prosemirror/version.rb` 1. Commit and push directly to master 1. Run the `script/release` script to cut a release 1. Draft a new release at https://github.com/inputhq/html_to_prosemirror.rb/releases/new containing the curated changelog ## Prerequisites In order to create a release, you will need to be an owner of the html_to_prosemirror gem on Rubygems. Verify with: ``` gem owner html_to_prosemirror ``` An existing owner can add new owners with: ``` gem owner html_to_prosemirror --add EMAIL ```
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
html_to_prosemirror-0.2.0 | RELEASE.md |
html_to_prosemirror-0.1.1 | RELEASE.md |