docs/Release.md in archangel-0.0.2 vs docs/Release.md in archangel-0.0.3

- old
+ new

@@ -1,9 +1,15 @@ # Releasing Gem -1. Bump the gem version in `lib/archangel/version.rb` +1. Clean up generated files + ``` + $ bundle exec rake clean + ``` + +2. Bump the gem version in `lib/archangel/version.rb` + Follow the rules of [Semantic Versioning](https://semver.org/). For example: * `1.2.3` * `1.3.0-beta` * `2.0.0-rc.1` @@ -14,12 +20,12 @@ $ bundle exec rake build ``` This will create a new .gem file in `pkg/`. Fix any errors or warnings that come up. -3. Create the gem, tag it in Github and release to Rubygems +4. Create the gem, tag it in Github and release to Rubygems ``` $ bundle exec rake release ``` -4. Profit! +5. Profit!