Skip to content

Commit 6bb85a4

Browse files
authored
Release 0.1.2 (#9)
1 parent 23c76b4 commit 6bb85a4

File tree

3 files changed

+29
-8
lines changed

3 files changed

+29
-8
lines changed

CHANGELOG.md

Lines changed: 25 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,30 @@
11
# Change Log
22

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

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

7-
## 0.1.0
7+
**Merged pull requests:**
88

9-
See https://github.com/jcouball/ruby_git/releases/tag/v0.1.0
9+
- Update instructions for creating releases and updating the changelog [\#8](https://github.com/jcouball/ruby_git/pull/8) ([jcouball](https://github.com/jcouball))
10+
- Changes requested in documentation review [\#7](https://github.com/jcouball/ruby_git/pull/7) ([jcouball](https://github.com/jcouball))
11+
- 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))
12+
- Move RSpec config from Rakefile to .rspec [\#5](https://github.com/jcouball/ruby_git/pull/5) ([jcouball](https://github.com/jcouball))
13+
- Release v0.1.1 [\#4](https://github.com/jcouball/ruby_git/pull/4) ([jcouball](https://github.com/jcouball))
14+
15+
## [v0.1.1](https://github.com/jcouball/ruby_git/releases/tag/v0.1.1) (2020-09-18)
16+
17+
[Full Changelog](https://github.com/jcouball/ruby_git/compare/v0.1.0...v0.1.1)
18+
19+
**Merged pull requests:**
20+
21+
- 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))
22+
- Remove Gemfile.lock and add it to .gitignore [\#2](https://github.com/jcouball/ruby_git/pull/2) ([jcouball](https://github.com/jcouball))
23+
24+
## [v0.1.0](https://github.com/jcouball/ruby_git/releases/tag/v0.1.0) (2020-09-18)
25+
26+
[Full Changelog](https://github.com/jcouball/ruby_git/compare/04b4b2bc59b0b09ad45a69572450cb393dbe79a1...v0.1.0)
27+
28+
29+
30+
\* *This Changelog was automatically generated by [github_changelog_generator](https://github.com/github-changelog-generator/github-changelog-generator)*

RELEASING.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,9 +16,9 @@ version number and (2) update the CHANGELOG.md, and (3) tag the release.
1616
* Bump the version number
1717
* Version number is in lib/ruby_git/version.rb
1818
* Follow [Semantic Versioning](https://semver.org) guidelines
19-
* `bundle exec bump patch` # bugfixes only
20-
* `bundle exec bump minor` # bugfixes only
21-
* `bundle exec bump major` # bugfixes only
19+
* `bundle exec bump --no-commit patch` # backwards compatible bug fixes
20+
* `bundle exec bump --no-commit minor` # backwards compatible new functionality
21+
* `bundle exec bump --no-commit major` # incompatible API changes
2222

2323
* Update CHANGELOG.md
2424
* `bundle exec rake changelog`

lib/ruby_git/version.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,5 +3,5 @@
33
module RubyGit
44
# The ruby_git gem version
55
#
6-
VERSION = '0.1.1'
6+
VERSION = '0.1.2'
77
end

0 commit comments

Comments
 (0)