Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
29 changes: 25 additions & 4 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,9 +1,30 @@
# Change Log

## 0.1.1
## [v0.1.2](https://github.com/jcouball/ruby_git/releases/tag/v0.1.2) (2020-09-24)

See https://github.com/jcouball/ruby_git/releases/tag/v0.1.1
[Full Changelog](https://github.com/jcouball/ruby_git/compare/v0.1.1...v0.1.2)

## 0.1.0
**Merged pull requests:**

See https://github.com/jcouball/ruby_git/releases/tag/v0.1.0
- Update instructions for creating releases and updating the changelog [\#8](https://github.com/jcouball/ruby_git/pull/8) ([jcouball](https://github.com/jcouball))
- Changes requested in documentation review [\#7](https://github.com/jcouball/ruby_git/pull/7) ([jcouball](https://github.com/jcouball))
- Set and retrieve the path to the git binary used by this library [\#6](https://github.com/jcouball/ruby_git/pull/6) ([jcouball](https://github.com/jcouball))
- Move RSpec config from Rakefile to .rspec [\#5](https://github.com/jcouball/ruby_git/pull/5) ([jcouball](https://github.com/jcouball))
- Release v0.1.1 [\#4](https://github.com/jcouball/ruby_git/pull/4) ([jcouball](https://github.com/jcouball))

## [v0.1.1](https://github.com/jcouball/ruby_git/releases/tag/v0.1.1) (2020-09-18)

[Full Changelog](https://github.com/jcouball/ruby_git/compare/v0.1.0...v0.1.1)

**Merged pull requests:**

- Add notice saying that this project is a work in progress [\#3](https://github.com/jcouball/ruby_git/pull/3) ([jcouball](https://github.com/jcouball))
- Remove Gemfile.lock and add it to .gitignore [\#2](https://github.com/jcouball/ruby_git/pull/2) ([jcouball](https://github.com/jcouball))

## [v0.1.0](https://github.com/jcouball/ruby_git/releases/tag/v0.1.0) (2020-09-18)

[Full Changelog](https://github.com/jcouball/ruby_git/compare/04b4b2bc59b0b09ad45a69572450cb393dbe79a1...v0.1.0)



\* *This Changelog was automatically generated by [github_changelog_generator](https://github.com/github-changelog-generator/github-changelog-generator)*
6 changes: 3 additions & 3 deletions RELEASING.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,9 +16,9 @@ version number and (2) update the CHANGELOG.md, and (3) tag the release.
* Bump the version number
* Version number is in lib/ruby_git/version.rb
* Follow [Semantic Versioning](https://semver.org) guidelines
* `bundle exec bump patch` # bugfixes only
* `bundle exec bump minor` # bugfixes only
* `bundle exec bump major` # bugfixes only
* `bundle exec bump --no-commit patch` # backwards compatible bug fixes
* `bundle exec bump --no-commit minor` # backwards compatible new functionality
* `bundle exec bump --no-commit major` # incompatible API changes

* Update CHANGELOG.md
* `bundle exec rake changelog`
Expand Down
2 changes: 1 addition & 1 deletion lib/ruby_git/version.rb
Original file line number Diff line number Diff line change
Expand Up @@ -3,5 +3,5 @@
module RubyGit
# The ruby_git gem version
#
VERSION = '0.1.1'
VERSION = '0.1.2'
end