git_reflow 0.8.6 → 0.8.7

Sign up to get free protection for your applications and to get access to all the features.
Files changed (77) hide show
  1. checksums.yaml +4 -4
  2. data/.gitignore +1 -0
  3. data/CHANGELOG.md +348 -348
  4. data/Gemfile.lock +13 -15
  5. data/LICENSE +20 -20
  6. data/README.rdoc +461 -461
  7. data/Rakefile +8 -8
  8. data/bin/console +7 -7
  9. data/bin/setup +6 -6
  10. data/circle.yml +5 -5
  11. data/exe/git-reflow +36 -36
  12. data/git_reflow.gemspec +1 -1
  13. data/lib/git_reflow/commands/deliver.rb +10 -10
  14. data/lib/git_reflow/commands/refresh.rb +20 -20
  15. data/lib/git_reflow/commands/review.rb +13 -13
  16. data/lib/git_reflow/commands/setup.rb +11 -11
  17. data/lib/git_reflow/commands/stage.rb +9 -9
  18. data/lib/git_reflow/commands/start.rb +22 -22
  19. data/lib/git_reflow/commands/status.rb +7 -7
  20. data/lib/git_reflow/config.rb +9 -9
  21. data/lib/git_reflow/git_server/base.rb +68 -68
  22. data/lib/git_reflow/git_server/bit_bucket/pull_request.rb +84 -84
  23. data/lib/git_reflow/git_server/bit_bucket.rb +101 -101
  24. data/lib/git_reflow/git_server/git_hub/pull_request.rb +4 -1
  25. data/lib/git_reflow/git_server/pull_request.rb +11 -2
  26. data/lib/git_reflow/git_server.rb +63 -63
  27. data/lib/git_reflow/logger.rb +49 -0
  28. data/lib/git_reflow/merge_error.rb +9 -9
  29. data/lib/git_reflow/os_detector.rb +23 -23
  30. data/lib/git_reflow/rspec/command_line_helpers.rb +12 -8
  31. data/lib/git_reflow/rspec/stub_helpers.rb +13 -13
  32. data/lib/git_reflow/rspec.rb +2 -2
  33. data/lib/git_reflow/sandbox.rb +11 -6
  34. data/lib/git_reflow/version.rb +1 -1
  35. data/lib/git_reflow/workflow.rb +59 -59
  36. data/lib/git_reflow/workflows/core.rb +238 -238
  37. data/lib/git_reflow/workflows/flat_merge.rb +10 -10
  38. data/lib/git_reflow.rb +11 -0
  39. data/spec/fixtures/awesome_workflow.rb +7 -0
  40. data/spec/fixtures/git/git_config +7 -0
  41. data/spec/fixtures/issues/comment.json.erb +27 -0
  42. data/spec/fixtures/issues/comments.json +29 -0
  43. data/spec/fixtures/issues/comments.json.erb +15 -0
  44. data/spec/fixtures/pull_requests/comment.json.erb +45 -0
  45. data/spec/fixtures/pull_requests/comments.json +47 -0
  46. data/spec/fixtures/pull_requests/comments.json.erb +15 -0
  47. data/spec/fixtures/pull_requests/commits.json +29 -0
  48. data/spec/fixtures/pull_requests/external_pull_request.json +145 -0
  49. data/spec/fixtures/pull_requests/pull_request.json +142 -0
  50. data/spec/fixtures/pull_requests/pull_request.json.erb +142 -0
  51. data/spec/fixtures/pull_requests/pull_request_exists_error.json +32 -0
  52. data/spec/fixtures/pull_requests/pull_requests.json +136 -0
  53. data/spec/fixtures/repositories/commit.json +53 -0
  54. data/spec/fixtures/repositories/commit.json.erb +53 -0
  55. data/spec/fixtures/repositories/commits.json.erb +13 -0
  56. data/spec/fixtures/repositories/statuses.json +31 -0
  57. data/spec/fixtures/workflow_with_super.rb +8 -0
  58. data/spec/lib/git_reflow/config_spec.rb +74 -0
  59. data/spec/lib/git_reflow/git_helpers_spec.rb +182 -0
  60. data/spec/lib/git_reflow/git_server/bit_bucket_spec.rb +81 -0
  61. data/spec/lib/git_reflow/git_server/git_hub/pull_request_spec.rb +587 -0
  62. data/spec/lib/git_reflow/git_server/git_hub_spec.rb +221 -0
  63. data/spec/lib/git_reflow/git_server/pull_request_spec.rb +524 -0
  64. data/spec/lib/git_reflow/git_server_spec.rb +101 -0
  65. data/spec/lib/git_reflow/logger_spec.rb +18 -0
  66. data/spec/lib/git_reflow/sandbox_spec.rb +15 -0
  67. data/spec/lib/git_reflow/workflow_spec.rb +59 -0
  68. data/spec/lib/git_reflow/workflows/core_spec.rb +665 -0
  69. data/spec/lib/git_reflow/workflows/flat_merge_spec.rb +59 -0
  70. data/spec/lib/git_reflow_spec.rb +75 -0
  71. data/spec/spec_helper.rb +38 -0
  72. data/spec/support/fake_github.rb +128 -0
  73. data/spec/support/fixtures.rb +54 -0
  74. data/spec/support/github_helpers.rb +109 -0
  75. data/spec/support/mock_pull_request.rb +17 -0
  76. data/spec/support/web_mocks.rb +39 -0
  77. metadata +83 -6
data/CHANGELOG.md CHANGED
@@ -1,348 +1,348 @@
1
- # Change Log
2
-
3
- ## [Unreleased](https://github.com/reenhanced/gitreflow/tree/v0.8.4)
4
-
5
- [Full Changelog](https://github.com/reenhanced/gitreflow/compare/v0.8.3...v0.8.4)
6
-
7
- **Closed issues:**
8
-
9
- - Introduce the idea of "Workflows" to customize steps [\#53](https://github.com/reenhanced/gitreflow/issues/53)
10
- - undefined method for strip during setup [\#197](https://github.com/reenhanced/gitreflow/issues/197)
11
-
12
- **Merged pull requests:**
13
-
14
- - \[53\] Create core workflow module to consolidate commands [\#198](https://github.com/reenhanced/gitreflow/pull/198) ([codenamev](https://github.com/codenamev))
15
-
16
- ## [v0.8.3](https://github.com/reenhanced/gitreflow/tree/v0.8.3) (2016-08-04)
17
- [Full Changelog](https://github.com/reenhanced/gitreflow/compare/v0.8.2...v0.8.3)
18
-
19
- ## [v0.8.2](https://github.com/reenhanced/gitreflow/tree/v0.8.2) (2016-08-01)
20
- [Full Changelog](https://github.com/reenhanced/gitreflow/compare/v0.8.1...v0.8.2)
21
-
22
- **Fixed bugs:**
23
-
24
- - git-reflow setup not working on Windows [\#187](https://github.com/reenhanced/gitreflow/issues/187)
25
-
26
- **Closed issues:**
27
-
28
- - GitHub authentication issues [\#193](https://github.com/reenhanced/gitreflow/issues/193)
29
- - non-master base branch does not work for the deliver command [\#192](https://github.com/reenhanced/gitreflow/issues/192)
30
- - git-reflow fork command [\#188](https://github.com/reenhanced/gitreflow/issues/188)
31
- - Bitbucket setup not working [\#186](https://github.com/reenhanced/gitreflow/issues/186)
32
- - Default approval regex not respecting :+1: [\#182](https://github.com/reenhanced/gitreflow/issues/182)
33
- - \[SOLVED\] Unable To Install the GEM \(install nokogiri manually to solve the issue\) [\#178](https://github.com/reenhanced/gitreflow/issues/178)
34
- - Can we switch off LGTM reviews? [\#177](https://github.com/reenhanced/gitreflow/issues/177)
35
- - gitreflow does not cache github token? [\#173](https://github.com/reenhanced/gitreflow/issues/173)
36
- - message below the fold in review [\#105](https://github.com/reenhanced/gitreflow/issues/105)
37
-
38
- **Merged pull requests:**
39
-
40
- - \[\#187\] Update git-reflow config file path to use $HOME for windows support [\#195](https://github.com/reenhanced/gitreflow/pull/195) ([codenamev](https://github.com/codenamev))
41
- - \[192\] Allow delivery to custom base branch [\#194](https://github.com/reenhanced/gitreflow/pull/194) ([codenamev](https://github.com/codenamev))
42
- - Refactor tests to allow for use of reflow test helpers in third-party gems [\#189](https://github.com/reenhanced/gitreflow/pull/189) ([codenamev](https://github.com/codenamev))
43
- - \[Issue \#182\] Fix LGTM Expression [\#185](https://github.com/reenhanced/gitreflow/pull/185) ([simonzhu24](https://github.com/simonzhu24))
44
- - Use $EDITOR as text editor fallback [\#184](https://github.com/reenhanced/gitreflow/pull/184) ([timraasveld](https://github.com/timraasveld))
45
- - Respect GitHub pull request template [\#179](https://github.com/reenhanced/gitreflow/pull/179) ([timraasveld](https://github.com/timraasveld))
46
-
47
- ## [v0.8.1](https://github.com/reenhanced/gitreflow/tree/v0.8.1) (2016-05-26)
48
- [Full Changelog](https://github.com/reenhanced/gitreflow/compare/v0.8.0...v0.8.1)
49
-
50
- **Closed issues:**
51
-
52
- - undefined method `git\_editor\_comand' for GitReflow:Module [\#176](https://github.com/reenhanced/gitreflow/issues/176)
53
- - github PR ends up "closed" instead of "merged" [\#149](https://github.com/reenhanced/gitreflow/issues/149)
54
- - Update README to mention how to update an in-progress feature branch from origin/master [\#125](https://github.com/reenhanced/gitreflow/issues/125)
55
- - Option to silence the offer to open the PR in my browser? [\#117](https://github.com/reenhanced/gitreflow/issues/117)
56
- - command for merging updates from base branch [\#74](https://github.com/reenhanced/gitreflow/issues/74)
57
- - Support for non-master branch [\#73](https://github.com/reenhanced/gitreflow/issues/73)
58
-
59
- ## [v0.8.0](https://github.com/reenhanced/gitreflow/tree/v0.8.0) (2016-05-26)
60
- [Full Changelog](https://github.com/reenhanced/gitreflow/compare/v0.7.5...v0.8.0)
61
-
62
- **Implemented enhancements:**
63
-
64
- - Upgrade RSpec [\#162](https://github.com/reenhanced/gitreflow/issues/162)
65
-
66
- **Closed issues:**
67
-
68
- - Setup doesn't work with GH two-factor turned on [\#175](https://github.com/reenhanced/gitreflow/issues/175)
69
- - --base switch does not work? [\#174](https://github.com/reenhanced/gitreflow/issues/174)
70
- - Idea: git reflow promote \<promotion branch\> [\#168](https://github.com/reenhanced/gitreflow/issues/168)
71
- - add changelog support [\#100](https://github.com/reenhanced/gitreflow/issues/100)
72
- - Always have reflow start create a branch from master [\#66](https://github.com/reenhanced/gitreflow/issues/66)
73
-
74
- **Merged pull requests:**
75
-
76
- - Cleanup new Github merge for next release [\#172](https://github.com/reenhanced/gitreflow/pull/172) ([codenamev](https://github.com/codenamev))
77
- - Bug Fix for Merging "reenhanced:master" instead of "master" [\#171](https://github.com/reenhanced/gitreflow/pull/171) ([simonzhu24](https://github.com/simonzhu24))
78
- - Sz issue/149 fix commit message to merge instead of close [\#170](https://github.com/reenhanced/gitreflow/pull/170) ([simonzhu24](https://github.com/simonzhu24))
79
- - Fixing Refresh to take in parameter for "base" instead of "branch" [\#169](https://github.com/reenhanced/gitreflow/pull/169) ([simonzhu24](https://github.com/simonzhu24))
80
- - \[Issue \#66\] Always have reflow start create a branch from master [\#167](https://github.com/reenhanced/gitreflow/pull/167) ([simonzhu24](https://github.com/simonzhu24))
81
- - \[162\] Updating Rspec Version to 3.3.0 [\#165](https://github.com/reenhanced/gitreflow/pull/165) ([simonzhu24](https://github.com/simonzhu24))
82
- - \[Issue \#66 + \#74\] Implementing "Git Reflow Refresh" [\#164](https://github.com/reenhanced/gitreflow/pull/164) ([simonzhu24](https://github.com/simonzhu24))
83
- - \[issue: 162\] Updating Rspecs: Use "Allow" instead of "Stub" [\#163](https://github.com/reenhanced/gitreflow/pull/163) ([simonzhu24](https://github.com/simonzhu24))
84
-
85
- ## [v0.7.5](https://github.com/reenhanced/gitreflow/tree/v0.7.5) (2016-04-14)
86
- [Full Changelog](https://github.com/reenhanced/gitreflow/compare/v0.7.4...v0.7.5)
87
-
88
- **Implemented enhancements:**
89
-
90
- - Modernize gem file structure [\#158](https://github.com/reenhanced/gitreflow/issues/158)
91
-
92
- **Closed issues:**
93
-
94
- - Remove unused gitreflow-common [\#154](https://github.com/reenhanced/gitreflow/issues/154)
95
- - Option to require LGTM from only one person? [\#141](https://github.com/reenhanced/gitreflow/issues/141)
96
-
97
- **Merged pull requests:**
98
-
99
- - \[Issue \#141\] Fixing Issues and Adding Configurable Nx LGTM and LGTM Regex Options, Adding Rspec Tests [\#161](https://github.com/reenhanced/gitreflow/pull/161) ([simonzhu24](https://github.com/simonzhu24))
100
- - modernize gem structure; Fixes \#158 [\#159](https://github.com/reenhanced/gitreflow/pull/159) ([pboling](https://github.com/pboling))
101
- - Remove unused gitreflow-common [\#155](https://github.com/reenhanced/gitreflow/pull/155) ([pboling](https://github.com/pboling))
102
-
103
- ## [v0.7.4](https://github.com/reenhanced/gitreflow/tree/v0.7.4) (2016-04-08)
104
- [Full Changelog](https://github.com/reenhanced/gitreflow/compare/v0.7.3...v0.7.4)
105
-
106
- **Fixed bugs:**
107
-
108
- - Deliver command doesn't sync feature branch before merge [\#152](https://github.com/reenhanced/gitreflow/issues/152)
109
- - SSL Verification is turned off [\#151](https://github.com/reenhanced/gitreflow/issues/151)
110
-
111
- ## [v0.7.3](https://github.com/reenhanced/gitreflow/tree/v0.7.3) (2016-03-24)
112
- [Full Changelog](https://github.com/reenhanced/gitreflow/compare/v0.7.2...v0.7.3)
113
-
114
- **Fixed bugs:**
115
-
116
- - Setting title is ignored from review [\#127](https://github.com/reenhanced/gitreflow/issues/127)
117
- - Don't open EDITOR if there is an existing PR for this branch [\#123](https://github.com/reenhanced/gitreflow/issues/123)
118
-
119
- **Closed issues:**
120
-
121
- - add "Created With Reflow" [\#101](https://github.com/reenhanced/gitreflow/issues/101)
122
- - Store OAuth token somewhere else? [\#54](https://github.com/reenhanced/gitreflow/issues/54)
123
-
124
- ## [v0.7.2](https://github.com/reenhanced/gitreflow/tree/v0.7.2) (2016-02-22)
125
- [Full Changelog](https://github.com/reenhanced/gitreflow/compare/v0.7.1...v0.7.2)
126
-
127
- **Closed issues:**
128
-
129
- - git: 'reflow' is not a git command. See 'git --help' [\#146](https://github.com/reenhanced/gitreflow/issues/146)
130
- - option to use non-master branch by default everywhere [\#145](https://github.com/reenhanced/gitreflow/issues/145)
131
- - Deliver to custom branch? [\#144](https://github.com/reenhanced/gitreflow/issues/144)
132
-
133
- ## [v0.7.1](https://github.com/reenhanced/gitreflow/tree/v0.7.1) (2015-10-27)
134
- [Full Changelog](https://github.com/reenhanced/gitreflow/compare/v0.7.0...v0.7.1)
135
-
136
- **Merged pull requests:**
137
-
138
- - Fix the ask to open in browser dialog on Mac. [\#143](https://github.com/reenhanced/gitreflow/pull/143) ([squaresurf](https://github.com/squaresurf))
139
-
140
- ## [v0.7.0](https://github.com/reenhanced/gitreflow/tree/v0.7.0) (2015-10-14)
141
- [Full Changelog](https://github.com/reenhanced/gitreflow/compare/v0.6.7...v0.7.0)
142
-
143
- **Fixed bugs:**
144
-
145
- - Hide author's name from list of LGTMs we need to get [\#126](https://github.com/reenhanced/gitreflow/issues/126)
146
-
147
- **Closed issues:**
148
-
149
- - Command Injection in append\_to\_squashed\_commit\_message. [\#134](https://github.com/reenhanced/gitreflow/issues/134)
150
-
151
- ## [v0.6.7](https://github.com/reenhanced/gitreflow/tree/v0.6.7) (2015-09-29)
152
- [Full Changelog](https://github.com/reenhanced/gitreflow/compare/v0.6.6...v0.6.7)
153
-
154
- ## [v0.6.6](https://github.com/reenhanced/gitreflow/tree/v0.6.6) (2015-09-28)
155
- [Full Changelog](https://github.com/reenhanced/gitreflow/compare/v0.6.5...v0.6.6)
156
-
157
- **Merged pull requests:**
158
-
159
- - Fix review message parsing from editor failed [\#133](https://github.com/reenhanced/gitreflow/pull/133) ([francois](https://github.com/francois))
160
-
161
- ## [v0.6.5](https://github.com/reenhanced/gitreflow/tree/v0.6.5) (2015-08-31)
162
- [Full Changelog](https://github.com/reenhanced/gitreflow/compare/v0.6.4...v0.6.5)
163
-
164
- **Closed issues:**
165
-
166
- - Request: git reflow review --quick or --update [\#129](https://github.com/reenhanced/gitreflow/issues/129)
167
- - Feature Request: command to cleanly land a contributor's PR [\#128](https://github.com/reenhanced/gitreflow/issues/128)
168
-
169
- ## [v0.6.4](https://github.com/reenhanced/gitreflow/tree/v0.6.4) (2015-08-04)
170
- [Full Changelog](https://github.com/reenhanced/gitreflow/compare/v0.6.3...v0.6.4)
171
-
172
- **Fixed bugs:**
173
-
174
- - reflow needs an lgtm from myself [\#116](https://github.com/reenhanced/gitreflow/issues/116)
175
-
176
- ## [v0.6.3](https://github.com/reenhanced/gitreflow/tree/v0.6.3) (2015-08-03)
177
- [Full Changelog](https://github.com/reenhanced/gitreflow/compare/v0.6.2...v0.6.3)
178
-
179
- **Closed issues:**
180
-
181
- - Github pre-receive hook to ensure review is not skipped [\#121](https://github.com/reenhanced/gitreflow/issues/121)
182
- - Error: \#\<NameError: wrong constant name \> [\#120](https://github.com/reenhanced/gitreflow/issues/120)
183
-
184
- ## [v0.6.2](https://github.com/reenhanced/gitreflow/tree/v0.6.2) (2015-08-03)
185
- [Full Changelog](https://github.com/reenhanced/gitreflow/compare/v0.6.1...v0.6.2)
186
-
187
- **Fixed bugs:**
188
-
189
- - GIT\_REFLOW\_PR\_MSG: Permission denied [\#115](https://github.com/reenhanced/gitreflow/issues/115)
190
- - Git reflow setup undefined method `body` [\#96](https://github.com/reenhanced/gitreflow/issues/96)
191
-
192
- **Closed issues:**
193
-
194
- - deliver halted because lgtm not detected, but lgtm exists [\#119](https://github.com/reenhanced/gitreflow/issues/119)
195
- - Clarify when I would want to install reflow or git\_reflow [\#113](https://github.com/reenhanced/gitreflow/issues/113)
196
- - Clarify when I would want to install reflow or git\_reflow [\#112](https://github.com/reenhanced/gitreflow/issues/112)
197
- - Error when running git reflow review [\#107](https://github.com/reenhanced/gitreflow/issues/107)
198
- - Default PR title from branch name rather than last commit [\#89](https://github.com/reenhanced/gitreflow/issues/89)
199
-
200
- **Merged pull requests:**
201
-
202
- - Clarify how to pick which gem [\#114](https://github.com/reenhanced/gitreflow/pull/114) ([sethladd](https://github.com/sethladd))
203
- - Add number attribute to Base:PullRequest [\#110](https://github.com/reenhanced/gitreflow/pull/110) ([tanin47](https://github.com/tanin47))
204
-
205
- ## [v0.6.1](https://github.com/reenhanced/gitreflow/tree/v0.6.1) (2015-06-02)
206
- [Full Changelog](https://github.com/reenhanced/gitreflow/compare/v0.6.0...v0.6.1)
207
-
208
- **Closed issues:**
209
-
210
- - git reflow setup not working [\#106](https://github.com/reenhanced/gitreflow/issues/106)
211
-
212
- ## [v0.6.0](https://github.com/reenhanced/gitreflow/tree/v0.6.0) (2015-05-15)
213
- [Full Changelog](https://github.com/reenhanced/gitreflow/compare/v0.5.3...v0.6.0)
214
-
215
- **Merged pull requests:**
216
-
217
- - new functionality for review [\#99](https://github.com/reenhanced/gitreflow/pull/99) ([meesterdude](https://github.com/meesterdude))
218
-
219
- ## [v0.5.3](https://github.com/reenhanced/gitreflow/tree/v0.5.3) (2015-05-15)
220
- [Full Changelog](https://github.com/reenhanced/gitreflow/compare/v0.5.2...v0.5.3)
221
-
222
- **Closed issues:**
223
-
224
- - rescue/allow retry on review submit [\#102](https://github.com/reenhanced/gitreflow/issues/102)
225
- - tmp\_squash\_msg can be improved [\#97](https://github.com/reenhanced/gitreflow/issues/97)
226
- - Getting following error while setting up GitHub with reflow [\#94](https://github.com/reenhanced/gitreflow/issues/94)
227
-
228
- **Merged pull requests:**
229
-
230
- - tmp\_squash\_msh is not removed if we use git reflow in other directories than root. [\#98](https://github.com/reenhanced/gitreflow/pull/98) ([tanin47](https://github.com/tanin47))
231
-
232
- ## [v0.5.2](https://github.com/reenhanced/gitreflow/tree/v0.5.2) (2015-04-03)
233
- [Full Changelog](https://github.com/reenhanced/gitreflow/compare/v0.5.1...v0.5.2)
234
-
235
- ## [v0.5.1](https://github.com/reenhanced/gitreflow/tree/v0.5.1) (2015-03-26)
236
- [Full Changelog](https://github.com/reenhanced/gitreflow/compare/v0.5.0...v0.5.1)
237
-
238
- ## [v0.5.0](https://github.com/reenhanced/gitreflow/tree/v0.5.0) (2015-03-26)
239
- [Full Changelog](https://github.com/reenhanced/gitreflow/compare/v0.4.2...v0.5.0)
240
-
241
- **Fixed bugs:**
242
-
243
- - bad URI on git reflow status [\#88](https://github.com/reenhanced/gitreflow/issues/88)
244
-
245
- **Closed issues:**
246
-
247
- - Changing remote url in \reponame\.git\config to make reflow deliver work [\#75](https://github.com/reenhanced/gitreflow/issues/75)
248
-
249
- ## [v0.4.2](https://github.com/reenhanced/gitreflow/tree/v0.4.2) (2015-02-10)
250
- [Full Changelog](https://github.com/reenhanced/gitreflow/compare/v0.4.1...v0.4.2)
251
-
252
- **Fixed bugs:**
253
-
254
- - Allow for non-ssh origin urls [\#71](https://github.com/reenhanced/gitreflow/issues/71)
255
-
256
- **Closed issues:**
257
-
258
- - 404 error on all PR functions [\#77](https://github.com/reenhanced/gitreflow/issues/77)
259
- - Show an error message when trying to use the `http` url [\#72](https://github.com/reenhanced/gitreflow/issues/72)
260
- - Setup does not work when 2-factor authentication is enabled [\#57](https://github.com/reenhanced/gitreflow/issues/57)
261
- - Github Enterprise Compatibility [\#42](https://github.com/reenhanced/gitreflow/issues/42)
262
-
263
- ## [v0.4.1](https://github.com/reenhanced/gitreflow/tree/v0.4.1) (2014-10-28)
264
- [Full Changelog](https://github.com/reenhanced/gitreflow/compare/v0.4.0...v0.4.1)
265
-
266
- **Closed issues:**
267
-
268
- - License does not have year and name filled in [\#69](https://github.com/reenhanced/gitreflow/issues/69)
269
-
270
- ## [v0.4.0](https://github.com/reenhanced/gitreflow/tree/v0.4.0) (2014-10-16)
271
- [Full Changelog](https://github.com/reenhanced/gitreflow/compare/v0.3.5...v0.4.0)
272
-
273
- **Merged pull requests:**
274
-
275
- - Make sure to create feature branch with current branch as base [\#64](https://github.com/reenhanced/gitreflow/pull/64) ([esposito](https://github.com/esposito))
276
- - \[fix\] Show delivery halted message properly [\#63](https://github.com/reenhanced/gitreflow/pull/63) ([shirshendu](https://github.com/shirshendu))
277
-
278
- ## [v0.3.5](https://github.com/reenhanced/gitreflow/tree/v0.3.5) (2014-03-05)
279
- [Full Changelog](https://github.com/reenhanced/gitreflow/compare/v0.3.4...v0.3.5)
280
-
281
- **Closed issues:**
282
-
283
- - Getting a 'error: POST https://api.github.com/authorizations: 422' when entering correct user/password [\#60](https://github.com/reenhanced/gitreflow/issues/60)
284
- - Why is squashed merging your preferred workflow? [\#52](https://github.com/reenhanced/gitreflow/issues/52)
285
- - Commit editor prints last commit line twice on top on deliver [\#49](https://github.com/reenhanced/gitreflow/issues/49)
286
- - `git reflow status` does not open in browser when answering 'y' [\#48](https://github.com/reenhanced/gitreflow/issues/48)
287
- - Setup fails [\#47](https://github.com/reenhanced/gitreflow/issues/47)
288
-
289
- **Merged pull requests:**
290
-
291
- - Add CI build status integration if present [\#58](https://github.com/reenhanced/gitreflow/pull/58) ([shirshendu](https://github.com/shirshendu))
292
- - Add note to created oauth token so users can find them on their tokens page [\#55](https://github.com/reenhanced/gitreflow/pull/55) ([marten](https://github.com/marten))
293
-
294
- ## [v0.3.4](https://github.com/reenhanced/gitreflow/tree/v0.3.4) (2013-11-01)
295
- [Full Changelog](https://github.com/reenhanced/gitreflow/compare/v0.3.3...v0.3.4)
296
-
297
- **Fixed bugs:**
298
-
299
- - Skip lgtm not functional [\#41](https://github.com/reenhanced/gitreflow/issues/41)
300
-
301
- **Closed issues:**
302
-
303
- - Syntax for `review` [\#44](https://github.com/reenhanced/gitreflow/issues/44)
304
- - Print all git commands [\#43](https://github.com/reenhanced/gitreflow/issues/43)
305
-
306
- ## [v0.3.3](https://github.com/reenhanced/gitreflow/tree/v0.3.3) (2013-10-16)
307
- [Full Changelog](https://github.com/reenhanced/gitreflow/compare/v0.3.2...v0.3.3)
308
-
309
- **Closed issues:**
310
-
311
- - License missing from gemspec [\#40](https://github.com/reenhanced/gitreflow/issues/40)
312
-
313
- **Merged pull requests:**
314
-
315
- - Fix --skip-lgtm option was never passed to the `\#deliver` method [\#45](https://github.com/reenhanced/gitreflow/pull/45) ([francois](https://github.com/francois))
316
-
317
- ## [v0.3.2](https://github.com/reenhanced/gitreflow/tree/v0.3.2) (2013-07-25)
318
- [Full Changelog](https://github.com/reenhanced/gitreflow/compare/v0.3.1...v0.3.2)
319
-
320
- ## [v0.3.1](https://github.com/reenhanced/gitreflow/tree/v0.3.1) (2013-07-12)
321
- [Full Changelog](https://github.com/reenhanced/gitreflow/compare/v0.3...v0.3.1)
322
-
323
- ## [v0.3](https://github.com/reenhanced/gitreflow/tree/v0.3) (2013-07-12)
324
- [Full Changelog](https://github.com/reenhanced/gitreflow/compare/v0.2.5...v0.3)
325
-
326
- ## [v0.2.5](https://github.com/reenhanced/gitreflow/tree/v0.2.5) (2013-03-04)
327
- [Full Changelog](https://github.com/reenhanced/gitreflow/compare/v0.2.5-with-tests...v0.2.5)
328
-
329
- ## [v0.2.5-with-tests](https://github.com/reenhanced/gitreflow/tree/v0.2.5-with-tests) (2013-03-04)
330
- [Full Changelog](https://github.com/reenhanced/gitreflow/compare/v0.2.4...v0.2.5-with-tests)
331
-
332
- ## [v0.2.4](https://github.com/reenhanced/gitreflow/tree/v0.2.4) (2012-09-21)
333
- [Full Changelog](https://github.com/reenhanced/gitreflow/compare/v0.2.2...v0.2.4)
334
-
335
- ## [v0.2.2](https://github.com/reenhanced/gitreflow/tree/v0.2.2) (2012-09-17)
336
- [Full Changelog](https://github.com/reenhanced/gitreflow/compare/v0.2.1...v0.2.2)
337
-
338
- ## [v0.2.1](https://github.com/reenhanced/gitreflow/tree/v0.2.1) (2012-08-30)
339
- [Full Changelog](https://github.com/reenhanced/gitreflow/compare/v0.2...v0.2.1)
340
-
341
- ## [v0.2](https://github.com/reenhanced/gitreflow/tree/v0.2) (2012-08-28)
342
- **Merged pull requests:**
343
-
344
- - Adds documentation to reflow [\#13](https://github.com/reenhanced/gitreflow/pull/13) ([nhance](https://github.com/nhance))
345
-
346
-
347
-
348
- \* *This Change Log was automatically generated by [github_changelog_generator](https://github.com/skywinder/Github-Changelog-Generator)*
1
+ # Change Log
2
+
3
+ ## [Unreleased](https://github.com/reenhanced/gitreflow/tree/v0.8.4)
4
+
5
+ [Full Changelog](https://github.com/reenhanced/gitreflow/compare/v0.8.3...v0.8.4)
6
+
7
+ **Closed issues:**
8
+
9
+ - Introduce the idea of "Workflows" to customize steps [\#53](https://github.com/reenhanced/gitreflow/issues/53)
10
+ - undefined method for strip during setup [\#197](https://github.com/reenhanced/gitreflow/issues/197)
11
+
12
+ **Merged pull requests:**
13
+
14
+ - \[53\] Create core workflow module to consolidate commands [\#198](https://github.com/reenhanced/gitreflow/pull/198) ([codenamev](https://github.com/codenamev))
15
+
16
+ ## [v0.8.3](https://github.com/reenhanced/gitreflow/tree/v0.8.3) (2016-08-04)
17
+ [Full Changelog](https://github.com/reenhanced/gitreflow/compare/v0.8.2...v0.8.3)
18
+
19
+ ## [v0.8.2](https://github.com/reenhanced/gitreflow/tree/v0.8.2) (2016-08-01)
20
+ [Full Changelog](https://github.com/reenhanced/gitreflow/compare/v0.8.1...v0.8.2)
21
+
22
+ **Fixed bugs:**
23
+
24
+ - git-reflow setup not working on Windows [\#187](https://github.com/reenhanced/gitreflow/issues/187)
25
+
26
+ **Closed issues:**
27
+
28
+ - GitHub authentication issues [\#193](https://github.com/reenhanced/gitreflow/issues/193)
29
+ - non-master base branch does not work for the deliver command [\#192](https://github.com/reenhanced/gitreflow/issues/192)
30
+ - git-reflow fork command [\#188](https://github.com/reenhanced/gitreflow/issues/188)
31
+ - Bitbucket setup not working [\#186](https://github.com/reenhanced/gitreflow/issues/186)
32
+ - Default approval regex not respecting :+1: [\#182](https://github.com/reenhanced/gitreflow/issues/182)
33
+ - \[SOLVED\] Unable To Install the GEM \(install nokogiri manually to solve the issue\) [\#178](https://github.com/reenhanced/gitreflow/issues/178)
34
+ - Can we switch off LGTM reviews? [\#177](https://github.com/reenhanced/gitreflow/issues/177)
35
+ - gitreflow does not cache github token? [\#173](https://github.com/reenhanced/gitreflow/issues/173)
36
+ - message below the fold in review [\#105](https://github.com/reenhanced/gitreflow/issues/105)
37
+
38
+ **Merged pull requests:**
39
+
40
+ - \[\#187\] Update git-reflow config file path to use $HOME for windows support [\#195](https://github.com/reenhanced/gitreflow/pull/195) ([codenamev](https://github.com/codenamev))
41
+ - \[192\] Allow delivery to custom base branch [\#194](https://github.com/reenhanced/gitreflow/pull/194) ([codenamev](https://github.com/codenamev))
42
+ - Refactor tests to allow for use of reflow test helpers in third-party gems [\#189](https://github.com/reenhanced/gitreflow/pull/189) ([codenamev](https://github.com/codenamev))
43
+ - \[Issue \#182\] Fix LGTM Expression [\#185](https://github.com/reenhanced/gitreflow/pull/185) ([simonzhu24](https://github.com/simonzhu24))
44
+ - Use $EDITOR as text editor fallback [\#184](https://github.com/reenhanced/gitreflow/pull/184) ([timraasveld](https://github.com/timraasveld))
45
+ - Respect GitHub pull request template [\#179](https://github.com/reenhanced/gitreflow/pull/179) ([timraasveld](https://github.com/timraasveld))
46
+
47
+ ## [v0.8.1](https://github.com/reenhanced/gitreflow/tree/v0.8.1) (2016-05-26)
48
+ [Full Changelog](https://github.com/reenhanced/gitreflow/compare/v0.8.0...v0.8.1)
49
+
50
+ **Closed issues:**
51
+
52
+ - undefined method `git\_editor\_comand' for GitReflow:Module [\#176](https://github.com/reenhanced/gitreflow/issues/176)
53
+ - github PR ends up "closed" instead of "merged" [\#149](https://github.com/reenhanced/gitreflow/issues/149)
54
+ - Update README to mention how to update an in-progress feature branch from origin/master [\#125](https://github.com/reenhanced/gitreflow/issues/125)
55
+ - Option to silence the offer to open the PR in my browser? [\#117](https://github.com/reenhanced/gitreflow/issues/117)
56
+ - command for merging updates from base branch [\#74](https://github.com/reenhanced/gitreflow/issues/74)
57
+ - Support for non-master branch [\#73](https://github.com/reenhanced/gitreflow/issues/73)
58
+
59
+ ## [v0.8.0](https://github.com/reenhanced/gitreflow/tree/v0.8.0) (2016-05-26)
60
+ [Full Changelog](https://github.com/reenhanced/gitreflow/compare/v0.7.5...v0.8.0)
61
+
62
+ **Implemented enhancements:**
63
+
64
+ - Upgrade RSpec [\#162](https://github.com/reenhanced/gitreflow/issues/162)
65
+
66
+ **Closed issues:**
67
+
68
+ - Setup doesn't work with GH two-factor turned on [\#175](https://github.com/reenhanced/gitreflow/issues/175)
69
+ - --base switch does not work? [\#174](https://github.com/reenhanced/gitreflow/issues/174)
70
+ - Idea: git reflow promote \<promotion branch\> [\#168](https://github.com/reenhanced/gitreflow/issues/168)
71
+ - add changelog support [\#100](https://github.com/reenhanced/gitreflow/issues/100)
72
+ - Always have reflow start create a branch from master [\#66](https://github.com/reenhanced/gitreflow/issues/66)
73
+
74
+ **Merged pull requests:**
75
+
76
+ - Cleanup new Github merge for next release [\#172](https://github.com/reenhanced/gitreflow/pull/172) ([codenamev](https://github.com/codenamev))
77
+ - Bug Fix for Merging "reenhanced:master" instead of "master" [\#171](https://github.com/reenhanced/gitreflow/pull/171) ([simonzhu24](https://github.com/simonzhu24))
78
+ - Sz issue/149 fix commit message to merge instead of close [\#170](https://github.com/reenhanced/gitreflow/pull/170) ([simonzhu24](https://github.com/simonzhu24))
79
+ - Fixing Refresh to take in parameter for "base" instead of "branch" [\#169](https://github.com/reenhanced/gitreflow/pull/169) ([simonzhu24](https://github.com/simonzhu24))
80
+ - \[Issue \#66\] Always have reflow start create a branch from master [\#167](https://github.com/reenhanced/gitreflow/pull/167) ([simonzhu24](https://github.com/simonzhu24))
81
+ - \[162\] Updating Rspec Version to 3.3.0 [\#165](https://github.com/reenhanced/gitreflow/pull/165) ([simonzhu24](https://github.com/simonzhu24))
82
+ - \[Issue \#66 + \#74\] Implementing "Git Reflow Refresh" [\#164](https://github.com/reenhanced/gitreflow/pull/164) ([simonzhu24](https://github.com/simonzhu24))
83
+ - \[issue: 162\] Updating Rspecs: Use "Allow" instead of "Stub" [\#163](https://github.com/reenhanced/gitreflow/pull/163) ([simonzhu24](https://github.com/simonzhu24))
84
+
85
+ ## [v0.7.5](https://github.com/reenhanced/gitreflow/tree/v0.7.5) (2016-04-14)
86
+ [Full Changelog](https://github.com/reenhanced/gitreflow/compare/v0.7.4...v0.7.5)
87
+
88
+ **Implemented enhancements:**
89
+
90
+ - Modernize gem file structure [\#158](https://github.com/reenhanced/gitreflow/issues/158)
91
+
92
+ **Closed issues:**
93
+
94
+ - Remove unused gitreflow-common [\#154](https://github.com/reenhanced/gitreflow/issues/154)
95
+ - Option to require LGTM from only one person? [\#141](https://github.com/reenhanced/gitreflow/issues/141)
96
+
97
+ **Merged pull requests:**
98
+
99
+ - \[Issue \#141\] Fixing Issues and Adding Configurable Nx LGTM and LGTM Regex Options, Adding Rspec Tests [\#161](https://github.com/reenhanced/gitreflow/pull/161) ([simonzhu24](https://github.com/simonzhu24))
100
+ - modernize gem structure; Fixes \#158 [\#159](https://github.com/reenhanced/gitreflow/pull/159) ([pboling](https://github.com/pboling))
101
+ - Remove unused gitreflow-common [\#155](https://github.com/reenhanced/gitreflow/pull/155) ([pboling](https://github.com/pboling))
102
+
103
+ ## [v0.7.4](https://github.com/reenhanced/gitreflow/tree/v0.7.4) (2016-04-08)
104
+ [Full Changelog](https://github.com/reenhanced/gitreflow/compare/v0.7.3...v0.7.4)
105
+
106
+ **Fixed bugs:**
107
+
108
+ - Deliver command doesn't sync feature branch before merge [\#152](https://github.com/reenhanced/gitreflow/issues/152)
109
+ - SSL Verification is turned off [\#151](https://github.com/reenhanced/gitreflow/issues/151)
110
+
111
+ ## [v0.7.3](https://github.com/reenhanced/gitreflow/tree/v0.7.3) (2016-03-24)
112
+ [Full Changelog](https://github.com/reenhanced/gitreflow/compare/v0.7.2...v0.7.3)
113
+
114
+ **Fixed bugs:**
115
+
116
+ - Setting title is ignored from review [\#127](https://github.com/reenhanced/gitreflow/issues/127)
117
+ - Don't open EDITOR if there is an existing PR for this branch [\#123](https://github.com/reenhanced/gitreflow/issues/123)
118
+
119
+ **Closed issues:**
120
+
121
+ - add "Created With Reflow" [\#101](https://github.com/reenhanced/gitreflow/issues/101)
122
+ - Store OAuth token somewhere else? [\#54](https://github.com/reenhanced/gitreflow/issues/54)
123
+
124
+ ## [v0.7.2](https://github.com/reenhanced/gitreflow/tree/v0.7.2) (2016-02-22)
125
+ [Full Changelog](https://github.com/reenhanced/gitreflow/compare/v0.7.1...v0.7.2)
126
+
127
+ **Closed issues:**
128
+
129
+ - git: 'reflow' is not a git command. See 'git --help' [\#146](https://github.com/reenhanced/gitreflow/issues/146)
130
+ - option to use non-master branch by default everywhere [\#145](https://github.com/reenhanced/gitreflow/issues/145)
131
+ - Deliver to custom branch? [\#144](https://github.com/reenhanced/gitreflow/issues/144)
132
+
133
+ ## [v0.7.1](https://github.com/reenhanced/gitreflow/tree/v0.7.1) (2015-10-27)
134
+ [Full Changelog](https://github.com/reenhanced/gitreflow/compare/v0.7.0...v0.7.1)
135
+
136
+ **Merged pull requests:**
137
+
138
+ - Fix the ask to open in browser dialog on Mac. [\#143](https://github.com/reenhanced/gitreflow/pull/143) ([squaresurf](https://github.com/squaresurf))
139
+
140
+ ## [v0.7.0](https://github.com/reenhanced/gitreflow/tree/v0.7.0) (2015-10-14)
141
+ [Full Changelog](https://github.com/reenhanced/gitreflow/compare/v0.6.7...v0.7.0)
142
+
143
+ **Fixed bugs:**
144
+
145
+ - Hide author's name from list of LGTMs we need to get [\#126](https://github.com/reenhanced/gitreflow/issues/126)
146
+
147
+ **Closed issues:**
148
+
149
+ - Command Injection in append\_to\_squashed\_commit\_message. [\#134](https://github.com/reenhanced/gitreflow/issues/134)
150
+
151
+ ## [v0.6.7](https://github.com/reenhanced/gitreflow/tree/v0.6.7) (2015-09-29)
152
+ [Full Changelog](https://github.com/reenhanced/gitreflow/compare/v0.6.6...v0.6.7)
153
+
154
+ ## [v0.6.6](https://github.com/reenhanced/gitreflow/tree/v0.6.6) (2015-09-28)
155
+ [Full Changelog](https://github.com/reenhanced/gitreflow/compare/v0.6.5...v0.6.6)
156
+
157
+ **Merged pull requests:**
158
+
159
+ - Fix review message parsing from editor failed [\#133](https://github.com/reenhanced/gitreflow/pull/133) ([francois](https://github.com/francois))
160
+
161
+ ## [v0.6.5](https://github.com/reenhanced/gitreflow/tree/v0.6.5) (2015-08-31)
162
+ [Full Changelog](https://github.com/reenhanced/gitreflow/compare/v0.6.4...v0.6.5)
163
+
164
+ **Closed issues:**
165
+
166
+ - Request: git reflow review --quick or --update [\#129](https://github.com/reenhanced/gitreflow/issues/129)
167
+ - Feature Request: command to cleanly land a contributor's PR [\#128](https://github.com/reenhanced/gitreflow/issues/128)
168
+
169
+ ## [v0.6.4](https://github.com/reenhanced/gitreflow/tree/v0.6.4) (2015-08-04)
170
+ [Full Changelog](https://github.com/reenhanced/gitreflow/compare/v0.6.3...v0.6.4)
171
+
172
+ **Fixed bugs:**
173
+
174
+ - reflow needs an lgtm from myself [\#116](https://github.com/reenhanced/gitreflow/issues/116)
175
+
176
+ ## [v0.6.3](https://github.com/reenhanced/gitreflow/tree/v0.6.3) (2015-08-03)
177
+ [Full Changelog](https://github.com/reenhanced/gitreflow/compare/v0.6.2...v0.6.3)
178
+
179
+ **Closed issues:**
180
+
181
+ - Github pre-receive hook to ensure review is not skipped [\#121](https://github.com/reenhanced/gitreflow/issues/121)
182
+ - Error: \#\<NameError: wrong constant name \> [\#120](https://github.com/reenhanced/gitreflow/issues/120)
183
+
184
+ ## [v0.6.2](https://github.com/reenhanced/gitreflow/tree/v0.6.2) (2015-08-03)
185
+ [Full Changelog](https://github.com/reenhanced/gitreflow/compare/v0.6.1...v0.6.2)
186
+
187
+ **Fixed bugs:**
188
+
189
+ - GIT\_REFLOW\_PR\_MSG: Permission denied [\#115](https://github.com/reenhanced/gitreflow/issues/115)
190
+ - Git reflow setup undefined method `body` [\#96](https://github.com/reenhanced/gitreflow/issues/96)
191
+
192
+ **Closed issues:**
193
+
194
+ - deliver halted because lgtm not detected, but lgtm exists [\#119](https://github.com/reenhanced/gitreflow/issues/119)
195
+ - Clarify when I would want to install reflow or git\_reflow [\#113](https://github.com/reenhanced/gitreflow/issues/113)
196
+ - Clarify when I would want to install reflow or git\_reflow [\#112](https://github.com/reenhanced/gitreflow/issues/112)
197
+ - Error when running git reflow review [\#107](https://github.com/reenhanced/gitreflow/issues/107)
198
+ - Default PR title from branch name rather than last commit [\#89](https://github.com/reenhanced/gitreflow/issues/89)
199
+
200
+ **Merged pull requests:**
201
+
202
+ - Clarify how to pick which gem [\#114](https://github.com/reenhanced/gitreflow/pull/114) ([sethladd](https://github.com/sethladd))
203
+ - Add number attribute to Base:PullRequest [\#110](https://github.com/reenhanced/gitreflow/pull/110) ([tanin47](https://github.com/tanin47))
204
+
205
+ ## [v0.6.1](https://github.com/reenhanced/gitreflow/tree/v0.6.1) (2015-06-02)
206
+ [Full Changelog](https://github.com/reenhanced/gitreflow/compare/v0.6.0...v0.6.1)
207
+
208
+ **Closed issues:**
209
+
210
+ - git reflow setup not working [\#106](https://github.com/reenhanced/gitreflow/issues/106)
211
+
212
+ ## [v0.6.0](https://github.com/reenhanced/gitreflow/tree/v0.6.0) (2015-05-15)
213
+ [Full Changelog](https://github.com/reenhanced/gitreflow/compare/v0.5.3...v0.6.0)
214
+
215
+ **Merged pull requests:**
216
+
217
+ - new functionality for review [\#99](https://github.com/reenhanced/gitreflow/pull/99) ([meesterdude](https://github.com/meesterdude))
218
+
219
+ ## [v0.5.3](https://github.com/reenhanced/gitreflow/tree/v0.5.3) (2015-05-15)
220
+ [Full Changelog](https://github.com/reenhanced/gitreflow/compare/v0.5.2...v0.5.3)
221
+
222
+ **Closed issues:**
223
+
224
+ - rescue/allow retry on review submit [\#102](https://github.com/reenhanced/gitreflow/issues/102)
225
+ - tmp\_squash\_msg can be improved [\#97](https://github.com/reenhanced/gitreflow/issues/97)
226
+ - Getting following error while setting up GitHub with reflow [\#94](https://github.com/reenhanced/gitreflow/issues/94)
227
+
228
+ **Merged pull requests:**
229
+
230
+ - tmp\_squash\_msh is not removed if we use git reflow in other directories than root. [\#98](https://github.com/reenhanced/gitreflow/pull/98) ([tanin47](https://github.com/tanin47))
231
+
232
+ ## [v0.5.2](https://github.com/reenhanced/gitreflow/tree/v0.5.2) (2015-04-03)
233
+ [Full Changelog](https://github.com/reenhanced/gitreflow/compare/v0.5.1...v0.5.2)
234
+
235
+ ## [v0.5.1](https://github.com/reenhanced/gitreflow/tree/v0.5.1) (2015-03-26)
236
+ [Full Changelog](https://github.com/reenhanced/gitreflow/compare/v0.5.0...v0.5.1)
237
+
238
+ ## [v0.5.0](https://github.com/reenhanced/gitreflow/tree/v0.5.0) (2015-03-26)
239
+ [Full Changelog](https://github.com/reenhanced/gitreflow/compare/v0.4.2...v0.5.0)
240
+
241
+ **Fixed bugs:**
242
+
243
+ - bad URI on git reflow status [\#88](https://github.com/reenhanced/gitreflow/issues/88)
244
+
245
+ **Closed issues:**
246
+
247
+ - Changing remote url in \reponame\.git\config to make reflow deliver work [\#75](https://github.com/reenhanced/gitreflow/issues/75)
248
+
249
+ ## [v0.4.2](https://github.com/reenhanced/gitreflow/tree/v0.4.2) (2015-02-10)
250
+ [Full Changelog](https://github.com/reenhanced/gitreflow/compare/v0.4.1...v0.4.2)
251
+
252
+ **Fixed bugs:**
253
+
254
+ - Allow for non-ssh origin urls [\#71](https://github.com/reenhanced/gitreflow/issues/71)
255
+
256
+ **Closed issues:**
257
+
258
+ - 404 error on all PR functions [\#77](https://github.com/reenhanced/gitreflow/issues/77)
259
+ - Show an error message when trying to use the `http` url [\#72](https://github.com/reenhanced/gitreflow/issues/72)
260
+ - Setup does not work when 2-factor authentication is enabled [\#57](https://github.com/reenhanced/gitreflow/issues/57)
261
+ - Github Enterprise Compatibility [\#42](https://github.com/reenhanced/gitreflow/issues/42)
262
+
263
+ ## [v0.4.1](https://github.com/reenhanced/gitreflow/tree/v0.4.1) (2014-10-28)
264
+ [Full Changelog](https://github.com/reenhanced/gitreflow/compare/v0.4.0...v0.4.1)
265
+
266
+ **Closed issues:**
267
+
268
+ - License does not have year and name filled in [\#69](https://github.com/reenhanced/gitreflow/issues/69)
269
+
270
+ ## [v0.4.0](https://github.com/reenhanced/gitreflow/tree/v0.4.0) (2014-10-16)
271
+ [Full Changelog](https://github.com/reenhanced/gitreflow/compare/v0.3.5...v0.4.0)
272
+
273
+ **Merged pull requests:**
274
+
275
+ - Make sure to create feature branch with current branch as base [\#64](https://github.com/reenhanced/gitreflow/pull/64) ([esposito](https://github.com/esposito))
276
+ - \[fix\] Show delivery halted message properly [\#63](https://github.com/reenhanced/gitreflow/pull/63) ([shirshendu](https://github.com/shirshendu))
277
+
278
+ ## [v0.3.5](https://github.com/reenhanced/gitreflow/tree/v0.3.5) (2014-03-05)
279
+ [Full Changelog](https://github.com/reenhanced/gitreflow/compare/v0.3.4...v0.3.5)
280
+
281
+ **Closed issues:**
282
+
283
+ - Getting a 'error: POST https://api.github.com/authorizations: 422' when entering correct user/password [\#60](https://github.com/reenhanced/gitreflow/issues/60)
284
+ - Why is squashed merging your preferred workflow? [\#52](https://github.com/reenhanced/gitreflow/issues/52)
285
+ - Commit editor prints last commit line twice on top on deliver [\#49](https://github.com/reenhanced/gitreflow/issues/49)
286
+ - `git reflow status` does not open in browser when answering 'y' [\#48](https://github.com/reenhanced/gitreflow/issues/48)
287
+ - Setup fails [\#47](https://github.com/reenhanced/gitreflow/issues/47)
288
+
289
+ **Merged pull requests:**
290
+
291
+ - Add CI build status integration if present [\#58](https://github.com/reenhanced/gitreflow/pull/58) ([shirshendu](https://github.com/shirshendu))
292
+ - Add note to created oauth token so users can find them on their tokens page [\#55](https://github.com/reenhanced/gitreflow/pull/55) ([marten](https://github.com/marten))
293
+
294
+ ## [v0.3.4](https://github.com/reenhanced/gitreflow/tree/v0.3.4) (2013-11-01)
295
+ [Full Changelog](https://github.com/reenhanced/gitreflow/compare/v0.3.3...v0.3.4)
296
+
297
+ **Fixed bugs:**
298
+
299
+ - Skip lgtm not functional [\#41](https://github.com/reenhanced/gitreflow/issues/41)
300
+
301
+ **Closed issues:**
302
+
303
+ - Syntax for `review` [\#44](https://github.com/reenhanced/gitreflow/issues/44)
304
+ - Print all git commands [\#43](https://github.com/reenhanced/gitreflow/issues/43)
305
+
306
+ ## [v0.3.3](https://github.com/reenhanced/gitreflow/tree/v0.3.3) (2013-10-16)
307
+ [Full Changelog](https://github.com/reenhanced/gitreflow/compare/v0.3.2...v0.3.3)
308
+
309
+ **Closed issues:**
310
+
311
+ - License missing from gemspec [\#40](https://github.com/reenhanced/gitreflow/issues/40)
312
+
313
+ **Merged pull requests:**
314
+
315
+ - Fix --skip-lgtm option was never passed to the `\#deliver` method [\#45](https://github.com/reenhanced/gitreflow/pull/45) ([francois](https://github.com/francois))
316
+
317
+ ## [v0.3.2](https://github.com/reenhanced/gitreflow/tree/v0.3.2) (2013-07-25)
318
+ [Full Changelog](https://github.com/reenhanced/gitreflow/compare/v0.3.1...v0.3.2)
319
+
320
+ ## [v0.3.1](https://github.com/reenhanced/gitreflow/tree/v0.3.1) (2013-07-12)
321
+ [Full Changelog](https://github.com/reenhanced/gitreflow/compare/v0.3...v0.3.1)
322
+
323
+ ## [v0.3](https://github.com/reenhanced/gitreflow/tree/v0.3) (2013-07-12)
324
+ [Full Changelog](https://github.com/reenhanced/gitreflow/compare/v0.2.5...v0.3)
325
+
326
+ ## [v0.2.5](https://github.com/reenhanced/gitreflow/tree/v0.2.5) (2013-03-04)
327
+ [Full Changelog](https://github.com/reenhanced/gitreflow/compare/v0.2.5-with-tests...v0.2.5)
328
+
329
+ ## [v0.2.5-with-tests](https://github.com/reenhanced/gitreflow/tree/v0.2.5-with-tests) (2013-03-04)
330
+ [Full Changelog](https://github.com/reenhanced/gitreflow/compare/v0.2.4...v0.2.5-with-tests)
331
+
332
+ ## [v0.2.4](https://github.com/reenhanced/gitreflow/tree/v0.2.4) (2012-09-21)
333
+ [Full Changelog](https://github.com/reenhanced/gitreflow/compare/v0.2.2...v0.2.4)
334
+
335
+ ## [v0.2.2](https://github.com/reenhanced/gitreflow/tree/v0.2.2) (2012-09-17)
336
+ [Full Changelog](https://github.com/reenhanced/gitreflow/compare/v0.2.1...v0.2.2)
337
+
338
+ ## [v0.2.1](https://github.com/reenhanced/gitreflow/tree/v0.2.1) (2012-08-30)
339
+ [Full Changelog](https://github.com/reenhanced/gitreflow/compare/v0.2...v0.2.1)
340
+
341
+ ## [v0.2](https://github.com/reenhanced/gitreflow/tree/v0.2) (2012-08-28)
342
+ **Merged pull requests:**
343
+
344
+ - Adds documentation to reflow [\#13](https://github.com/reenhanced/gitreflow/pull/13) ([nhance](https://github.com/nhance))
345
+
346
+
347
+
348
+ \* *This Change Log was automatically generated by [github_changelog_generator](https://github.com/skywinder/Github-Changelog-Generator)*