git_reflow 0.9.2 → 0.9.6
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/.github/workflows/multi-ruby-tests.yml +24 -0
- data/.rubocop.yml +7 -0
- data/.ruby-version +1 -1
- data/CHANGELOG.md +105 -12
- data/Gemfile.lock +133 -61
- data/README.md +9 -5
- data/Rakefile +8 -1
- data/git_reflow.gemspec +26 -24
- data/lib/git_reflow/config.rb +30 -4
- data/lib/git_reflow/git_helpers.rb +10 -4
- data/lib/git_reflow/git_server/git_hub/pull_request.rb +22 -6
- data/lib/git_reflow/git_server/git_hub.rb +53 -40
- data/lib/git_reflow/git_server/pull_request.rb +15 -1
- data/lib/git_reflow/version.rb +1 -1
- data/lib/git_reflow/workflow.rb +3 -3
- data/spec/fixtures/authentication_failure.json +3 -0
- data/spec/fixtures/users/user.json +32 -0
- data/spec/lib/git_reflow/git_helpers_spec.rb +92 -72
- data/spec/lib/git_reflow/git_server/git_hub/pull_request_spec.rb +1 -1
- data/spec/lib/git_reflow/git_server/git_hub_spec.rb +77 -3
- data/spec/lib/git_reflow/git_server/pull_request_spec.rb +33 -5
- data/spec/lib/git_reflow_spec.rb +0 -1
- data/spec/spec_helper.rb +1 -1
- metadata +54 -36
- data/circle.yml +0 -26
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 3f15edd7ea0d9df95980438cf9e846bd6b3e07829ef05adcc63c7b548c55c623
|
4
|
+
data.tar.gz: f315bc14d8ce7873db9f3e4708da9db581bec1bff63d2302465eb356450a2196
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: bf83e0671b38cd6b3e2f1a008068ad038cee28177ead79a1646994987b0e24141aeb41b0ee191e3856f7f0032df703b66b6a08e41949e319e68ad7dbea9e0bc1
|
7
|
+
data.tar.gz: 948128297b7ba1a38476fb48a81e1f238745a04966295e8506556cf61c1efacc32a98ea8d2966af43ffaa09a536c03790b6b04f129f65bab779ddfd5e9eeb5ed
|
@@ -0,0 +1,24 @@
|
|
1
|
+
name: Tests
|
2
|
+
|
3
|
+
on:
|
4
|
+
push:
|
5
|
+
branches: [ master ]
|
6
|
+
pull_request:
|
7
|
+
branches: [ master ]
|
8
|
+
|
9
|
+
jobs:
|
10
|
+
test:
|
11
|
+
strategy:
|
12
|
+
fail-fast: true
|
13
|
+
matrix:
|
14
|
+
os: [ ubuntu-latest, macos-latest ]
|
15
|
+
ruby: ['2.6.6', '2.7.2', '3.0.0 ']
|
16
|
+
runs-on: ${{ matrix.os }}
|
17
|
+
steps:
|
18
|
+
- uses: actions/checkout@v2
|
19
|
+
- uses: ruby/setup-ruby@v1
|
20
|
+
with:
|
21
|
+
ruby-version: ${{ matrix.ruby }}
|
22
|
+
bundler-cache: true
|
23
|
+
- name: Run Tests for Ruby ${{ matrix.ruby }} on ${{ matrix.os }}
|
24
|
+
run: bundle exec rake
|
data/.rubocop.yml
CHANGED
data/.ruby-version
CHANGED
@@ -1 +1 @@
|
|
1
|
-
|
1
|
+
3.0.0
|
data/CHANGELOG.md
CHANGED
@@ -1,6 +1,59 @@
|
|
1
|
-
#
|
1
|
+
# Changelog
|
2
2
|
|
3
|
-
## [
|
3
|
+
## [v0.9.6](https://github.com/reenhanced/gitreflow/tree/v0.9.6) (2021-11-05)
|
4
|
+
|
5
|
+
[Full Changelog](https://github.com/reenhanced/gitreflow/compare/v0.9.5...HEAD)
|
6
|
+
|
7
|
+
**Implemented enhancements:**
|
8
|
+
|
9
|
+
- Use GitHub PR Templates? [\#251](https://github.com/reenhanced/gitreflow/issues/251)
|
10
|
+
|
11
|
+
**Merged pull requests:**
|
12
|
+
|
13
|
+
- Introduce configurable PR and merge commit templates [\#252](https://github.com/reenhanced/gitreflow/pull/252) ([codenamev](https://github.com/codenamev))
|
14
|
+
|
15
|
+
## [v0.9.5](https://github.com/reenhanced/gitreflow/tree/v0.9.5) (2021-03-25)
|
16
|
+
|
17
|
+
[Full Changelog](https://github.com/reenhanced/gitreflow/compare/v0.9.4...v0.9.5)
|
18
|
+
|
19
|
+
**Fixed bugs:**
|
20
|
+
|
21
|
+
- Deprecation warnings with Ruby 2.7.0 [\#239](https://github.com/reenhanced/gitreflow/issues/239)
|
22
|
+
|
23
|
+
**Merged pull requests:**
|
24
|
+
|
25
|
+
- Support for Ruby 3.0 [\#249](https://github.com/reenhanced/gitreflow/pull/249) ([codenamev](https://github.com/codenamev))
|
26
|
+
|
27
|
+
## [v0.9.4](https://github.com/reenhanced/gitreflow/tree/v0.9.4) (2020-11-10)
|
28
|
+
|
29
|
+
[Full Changelog](https://github.com/reenhanced/gitreflow/compare/v0.9.3...v0.9.4)
|
30
|
+
|
31
|
+
**Merged pull requests:**
|
32
|
+
|
33
|
+
- Fix critical issue, and update deps [\#245](https://github.com/reenhanced/gitreflow/pull/245) ([codenamev](https://github.com/codenamev))
|
34
|
+
- Fixed typo [\#244](https://github.com/reenhanced/gitreflow/pull/244) ([hsbt](https://github.com/hsbt))
|
35
|
+
|
36
|
+
## [v0.9.3](https://github.com/reenhanced/gitreflow/tree/v0.9.3) (2020-06-02)
|
37
|
+
|
38
|
+
[Full Changelog](https://github.com/reenhanced/gitreflow/compare/v0.9.2...v0.9.3)
|
39
|
+
|
40
|
+
**Implemented enhancements:**
|
41
|
+
|
42
|
+
- Add documention for GitReflow::Config [\#237](https://github.com/reenhanced/gitreflow/issues/237)
|
43
|
+
- Add documentation [\#157](https://github.com/reenhanced/gitreflow/issues/157)
|
44
|
+
|
45
|
+
**Closed issues:**
|
46
|
+
|
47
|
+
- GitHub authentication issues [\#193](https://github.com/reenhanced/gitreflow/issues/193)
|
48
|
+
|
49
|
+
**Merged pull requests:**
|
50
|
+
|
51
|
+
- Upgrade dependencies [\#242](https://github.com/reenhanced/gitreflow/pull/242) ([codenamev](https://github.com/codenamev))
|
52
|
+
- Creates multi-ruby-tests.yml [\#241](https://github.com/reenhanced/gitreflow/pull/241) ([codenamev](https://github.com/codenamev))
|
53
|
+
- Documention for GitReflow::Config [\#238](https://github.com/reenhanced/gitreflow/pull/238) ([PuZZleDucK](https://github.com/PuZZleDucK))
|
54
|
+
- Fixes several issues related to git-reflow setup [\#236](https://github.com/reenhanced/gitreflow/pull/236) ([codenamev](https://github.com/codenamev))
|
55
|
+
|
56
|
+
## [v0.9.2](https://github.com/reenhanced/gitreflow/tree/v0.9.2) (2019-09-10)
|
4
57
|
|
5
58
|
[Full Changelog](https://github.com/reenhanced/gitreflow/compare/v0.9.1...v0.9.2)
|
6
59
|
|
@@ -11,9 +64,9 @@
|
|
11
64
|
**Merged pull requests:**
|
12
65
|
|
13
66
|
- Update dependencies and trap INT signal [\#235](https://github.com/reenhanced/gitreflow/pull/235) ([codenamev](https://github.com/codenamev))
|
14
|
-
- Allow installing gems from within Workflow files with `use_gem` and `use_gemfile` [\#233](https://github.com/reenhanced/gitreflow/pull/233) ([codenamev](https://github.com/codenamev))
|
15
67
|
|
16
68
|
## [v0.9.1](https://github.com/reenhanced/gitreflow/tree/v0.9.1) (2019-04-17)
|
69
|
+
|
17
70
|
[Full Changelog](https://github.com/reenhanced/gitreflow/compare/v0.9.0...v0.9.1)
|
18
71
|
|
19
72
|
**Closed issues:**
|
@@ -21,6 +74,7 @@
|
|
21
74
|
- Purpose of core `stage` command? [\#232](https://github.com/reenhanced/gitreflow/issues/232)
|
22
75
|
|
23
76
|
## [v0.9.0](https://github.com/reenhanced/gitreflow/tree/v0.9.0) (2018-11-09)
|
77
|
+
|
24
78
|
[Full Changelog](https://github.com/reenhanced/gitreflow/compare/v0.8.10...v0.9.0)
|
25
79
|
|
26
80
|
**Implemented enhancements:**
|
@@ -50,17 +104,19 @@
|
|
50
104
|
- Allow for custom commit/merge message templates [\#223](https://github.com/reenhanced/gitreflow/pull/223) ([codenamev](https://github.com/codenamev))
|
51
105
|
|
52
106
|
## [v0.8.10](https://github.com/reenhanced/gitreflow/tree/v0.8.10) (2018-04-19)
|
107
|
+
|
53
108
|
[Full Changelog](https://github.com/reenhanced/gitreflow/compare/v0.8.9...v0.8.10)
|
54
109
|
|
55
110
|
**Merged pull requests:**
|
56
111
|
|
57
112
|
- Updates rubies and gems [\#221](https://github.com/reenhanced/gitreflow/pull/221) ([codenamev](https://github.com/codenamev))
|
58
|
-
- Remove lingering `
|
113
|
+
- Remove lingering `skip_lgtm` options in favor of `force` option [\#218](https://github.com/reenhanced/gitreflow/pull/218) ([codenamev](https://github.com/codenamev))
|
59
114
|
- Remove dead code [\#217](https://github.com/reenhanced/gitreflow/pull/217) ([codenamev](https://github.com/codenamev))
|
60
115
|
- Updates REAME to Markdown [\#216](https://github.com/reenhanced/gitreflow/pull/216) ([codenamev](https://github.com/codenamev))
|
61
116
|
- Updates readme with details on customization [\#214](https://github.com/reenhanced/gitreflow/pull/214) ([codenamev](https://github.com/codenamev))
|
62
117
|
|
63
118
|
## [v0.8.9](https://github.com/reenhanced/gitreflow/tree/v0.8.9) (2017-04-26)
|
119
|
+
|
64
120
|
[Full Changelog](https://github.com/reenhanced/gitreflow/compare/v0.8.8...v0.8.9)
|
65
121
|
|
66
122
|
**Fixed bugs:**
|
@@ -73,9 +129,11 @@
|
|
73
129
|
- Adds checks for new GH reviews when delivering [\#215](https://github.com/reenhanced/gitreflow/pull/215) ([codenamev](https://github.com/codenamev))
|
74
130
|
|
75
131
|
## [v0.8.8](https://github.com/reenhanced/gitreflow/tree/v0.8.8) (2017-04-24)
|
132
|
+
|
76
133
|
[Full Changelog](https://github.com/reenhanced/gitreflow/compare/v0.8.7...v0.8.8)
|
77
134
|
|
78
135
|
## [v0.8.7](https://github.com/reenhanced/gitreflow/tree/v0.8.7) (2017-04-21)
|
136
|
+
|
79
137
|
[Full Changelog](https://github.com/reenhanced/gitreflow/compare/v0.8.4...v0.8.7)
|
80
138
|
|
81
139
|
**Implemented enhancements:**
|
@@ -93,7 +151,7 @@
|
|
93
151
|
**Merged pull requests:**
|
94
152
|
|
95
153
|
- 0.8.7 [\#213](https://github.com/reenhanced/gitreflow/pull/213) ([nhance](https://github.com/nhance))
|
96
|
-
- Updates Github merge request to use new `
|
154
|
+
- Updates Github merge request to use new `merge_method` param [\#211](https://github.com/reenhanced/gitreflow/pull/211) ([codenamev](https://github.com/codenamev))
|
97
155
|
- Adds a logger to log command runs [\#210](https://github.com/reenhanced/gitreflow/pull/210) ([codenamev](https://github.com/codenamev))
|
98
156
|
- All commands that are run through reflow \(except git-config\) are now blocking [\#209](https://github.com/reenhanced/gitreflow/pull/209) ([codenamev](https://github.com/codenamev))
|
99
157
|
- Fix loading of PR template from '.github' directory [\#208](https://github.com/reenhanced/gitreflow/pull/208) ([codenamev](https://github.com/codenamev))
|
@@ -102,6 +160,7 @@
|
|
102
160
|
- \[53\] Allow workflows to be loaded from git config [\#199](https://github.com/reenhanced/gitreflow/pull/199) ([codenamev](https://github.com/codenamev))
|
103
161
|
|
104
162
|
## [v0.8.4](https://github.com/reenhanced/gitreflow/tree/v0.8.4) (2016-08-22)
|
163
|
+
|
105
164
|
[Full Changelog](https://github.com/reenhanced/gitreflow/compare/v0.8.3...v0.8.4)
|
106
165
|
|
107
166
|
**Closed issues:**
|
@@ -114,9 +173,11 @@
|
|
114
173
|
- \[53\] Create core workflow module to consolidate commands [\#198](https://github.com/reenhanced/gitreflow/pull/198) ([codenamev](https://github.com/codenamev))
|
115
174
|
|
116
175
|
## [v0.8.3](https://github.com/reenhanced/gitreflow/tree/v0.8.3) (2016-08-04)
|
176
|
+
|
117
177
|
[Full Changelog](https://github.com/reenhanced/gitreflow/compare/v0.8.2...v0.8.3)
|
118
178
|
|
119
179
|
## [v0.8.2](https://github.com/reenhanced/gitreflow/tree/v0.8.2) (2016-08-01)
|
180
|
+
|
120
181
|
[Full Changelog](https://github.com/reenhanced/gitreflow/compare/v0.8.1...v0.8.2)
|
121
182
|
|
122
183
|
**Fixed bugs:**
|
@@ -125,7 +186,6 @@
|
|
125
186
|
|
126
187
|
**Closed issues:**
|
127
188
|
|
128
|
-
- GitHub authentication issues [\#193](https://github.com/reenhanced/gitreflow/issues/193)
|
129
189
|
- non-master base branch does not work for the deliver command [\#192](https://github.com/reenhanced/gitreflow/issues/192)
|
130
190
|
- git-reflow fork command [\#188](https://github.com/reenhanced/gitreflow/issues/188)
|
131
191
|
- Bitbucket setup not working [\#186](https://github.com/reenhanced/gitreflow/issues/186)
|
@@ -145,6 +205,7 @@
|
|
145
205
|
- Respect GitHub pull request template [\#179](https://github.com/reenhanced/gitreflow/pull/179) ([timraasveld](https://github.com/timraasveld))
|
146
206
|
|
147
207
|
## [v0.8.1](https://github.com/reenhanced/gitreflow/tree/v0.8.1) (2016-05-26)
|
208
|
+
|
148
209
|
[Full Changelog](https://github.com/reenhanced/gitreflow/compare/v0.8.0...v0.8.1)
|
149
210
|
|
150
211
|
**Closed issues:**
|
@@ -157,6 +218,7 @@
|
|
157
218
|
- Support for non-master branch [\#73](https://github.com/reenhanced/gitreflow/issues/73)
|
158
219
|
|
159
220
|
## [v0.8.0](https://github.com/reenhanced/gitreflow/tree/v0.8.0) (2016-05-26)
|
221
|
+
|
160
222
|
[Full Changelog](https://github.com/reenhanced/gitreflow/compare/v0.7.5...v0.8.0)
|
161
223
|
|
162
224
|
**Implemented enhancements:**
|
@@ -183,6 +245,7 @@
|
|
183
245
|
- \[issue: 162\] Updating Rspecs: Use "Allow" instead of "Stub" [\#163](https://github.com/reenhanced/gitreflow/pull/163) ([simonzhu24](https://github.com/simonzhu24))
|
184
246
|
|
185
247
|
## [v0.7.5](https://github.com/reenhanced/gitreflow/tree/v0.7.5) (2016-04-14)
|
248
|
+
|
186
249
|
[Full Changelog](https://github.com/reenhanced/gitreflow/compare/v0.7.4...v0.7.5)
|
187
250
|
|
188
251
|
**Implemented enhancements:**
|
@@ -201,6 +264,7 @@
|
|
201
264
|
- Remove unused gitreflow-common [\#155](https://github.com/reenhanced/gitreflow/pull/155) ([pboling](https://github.com/pboling))
|
202
265
|
|
203
266
|
## [v0.7.4](https://github.com/reenhanced/gitreflow/tree/v0.7.4) (2016-04-08)
|
267
|
+
|
204
268
|
[Full Changelog](https://github.com/reenhanced/gitreflow/compare/v0.7.3...v0.7.4)
|
205
269
|
|
206
270
|
**Fixed bugs:**
|
@@ -209,6 +273,7 @@
|
|
209
273
|
- SSL Verification is turned off [\#151](https://github.com/reenhanced/gitreflow/issues/151)
|
210
274
|
|
211
275
|
## [v0.7.3](https://github.com/reenhanced/gitreflow/tree/v0.7.3) (2016-03-24)
|
276
|
+
|
212
277
|
[Full Changelog](https://github.com/reenhanced/gitreflow/compare/v0.7.2...v0.7.3)
|
213
278
|
|
214
279
|
**Fixed bugs:**
|
@@ -222,6 +287,7 @@
|
|
222
287
|
- Store OAuth token somewhere else? [\#54](https://github.com/reenhanced/gitreflow/issues/54)
|
223
288
|
|
224
289
|
## [v0.7.2](https://github.com/reenhanced/gitreflow/tree/v0.7.2) (2016-02-22)
|
290
|
+
|
225
291
|
[Full Changelog](https://github.com/reenhanced/gitreflow/compare/v0.7.1...v0.7.2)
|
226
292
|
|
227
293
|
**Closed issues:**
|
@@ -231,6 +297,7 @@
|
|
231
297
|
- Deliver to custom branch? [\#144](https://github.com/reenhanced/gitreflow/issues/144)
|
232
298
|
|
233
299
|
## [v0.7.1](https://github.com/reenhanced/gitreflow/tree/v0.7.1) (2015-10-27)
|
300
|
+
|
234
301
|
[Full Changelog](https://github.com/reenhanced/gitreflow/compare/v0.7.0...v0.7.1)
|
235
302
|
|
236
303
|
**Merged pull requests:**
|
@@ -238,6 +305,7 @@
|
|
238
305
|
- Fix the ask to open in browser dialog on Mac. [\#143](https://github.com/reenhanced/gitreflow/pull/143) ([squaresurf](https://github.com/squaresurf))
|
239
306
|
|
240
307
|
## [v0.7.0](https://github.com/reenhanced/gitreflow/tree/v0.7.0) (2015-10-14)
|
308
|
+
|
241
309
|
[Full Changelog](https://github.com/reenhanced/gitreflow/compare/v0.6.7...v0.7.0)
|
242
310
|
|
243
311
|
**Fixed bugs:**
|
@@ -249,9 +317,11 @@
|
|
249
317
|
- Command Injection in append\_to\_squashed\_commit\_message. [\#134](https://github.com/reenhanced/gitreflow/issues/134)
|
250
318
|
|
251
319
|
## [v0.6.7](https://github.com/reenhanced/gitreflow/tree/v0.6.7) (2015-09-29)
|
320
|
+
|
252
321
|
[Full Changelog](https://github.com/reenhanced/gitreflow/compare/v0.6.6...v0.6.7)
|
253
322
|
|
254
323
|
## [v0.6.6](https://github.com/reenhanced/gitreflow/tree/v0.6.6) (2015-09-28)
|
324
|
+
|
255
325
|
[Full Changelog](https://github.com/reenhanced/gitreflow/compare/v0.6.5...v0.6.6)
|
256
326
|
|
257
327
|
**Merged pull requests:**
|
@@ -259,6 +329,7 @@
|
|
259
329
|
- Fix review message parsing from editor failed [\#133](https://github.com/reenhanced/gitreflow/pull/133) ([francois](https://github.com/francois))
|
260
330
|
|
261
331
|
## [v0.6.5](https://github.com/reenhanced/gitreflow/tree/v0.6.5) (2015-08-31)
|
332
|
+
|
262
333
|
[Full Changelog](https://github.com/reenhanced/gitreflow/compare/v0.6.4...v0.6.5)
|
263
334
|
|
264
335
|
**Closed issues:**
|
@@ -267,6 +338,7 @@
|
|
267
338
|
- Feature Request: command to cleanly land a contributor's PR [\#128](https://github.com/reenhanced/gitreflow/issues/128)
|
268
339
|
|
269
340
|
## [v0.6.4](https://github.com/reenhanced/gitreflow/tree/v0.6.4) (2015-08-04)
|
341
|
+
|
270
342
|
[Full Changelog](https://github.com/reenhanced/gitreflow/compare/v0.6.3...v0.6.4)
|
271
343
|
|
272
344
|
**Fixed bugs:**
|
@@ -274,6 +346,7 @@
|
|
274
346
|
- reflow needs an lgtm from myself [\#116](https://github.com/reenhanced/gitreflow/issues/116)
|
275
347
|
|
276
348
|
## [v0.6.3](https://github.com/reenhanced/gitreflow/tree/v0.6.3) (2015-08-03)
|
349
|
+
|
277
350
|
[Full Changelog](https://github.com/reenhanced/gitreflow/compare/v0.6.2...v0.6.3)
|
278
351
|
|
279
352
|
**Closed issues:**
|
@@ -282,6 +355,7 @@
|
|
282
355
|
- Error: \#\<NameError: wrong constant name \> [\#120](https://github.com/reenhanced/gitreflow/issues/120)
|
283
356
|
|
284
357
|
## [v0.6.2](https://github.com/reenhanced/gitreflow/tree/v0.6.2) (2015-08-03)
|
358
|
+
|
285
359
|
[Full Changelog](https://github.com/reenhanced/gitreflow/compare/v0.6.1...v0.6.2)
|
286
360
|
|
287
361
|
**Fixed bugs:**
|
@@ -303,6 +377,7 @@
|
|
303
377
|
- Add number attribute to Base:PullRequest [\#110](https://github.com/reenhanced/gitreflow/pull/110) ([tanin47](https://github.com/tanin47))
|
304
378
|
|
305
379
|
## [v0.6.1](https://github.com/reenhanced/gitreflow/tree/v0.6.1) (2015-06-02)
|
380
|
+
|
306
381
|
[Full Changelog](https://github.com/reenhanced/gitreflow/compare/v0.6.0...v0.6.1)
|
307
382
|
|
308
383
|
**Closed issues:**
|
@@ -310,13 +385,11 @@
|
|
310
385
|
- git reflow setup not working [\#106](https://github.com/reenhanced/gitreflow/issues/106)
|
311
386
|
|
312
387
|
## [v0.6.0](https://github.com/reenhanced/gitreflow/tree/v0.6.0) (2015-05-15)
|
313
|
-
[Full Changelog](https://github.com/reenhanced/gitreflow/compare/v0.5.3...v0.6.0)
|
314
388
|
|
315
|
-
|
316
|
-
|
317
|
-
- new functionality for review [\#99](https://github.com/reenhanced/gitreflow/pull/99) ([meesterdude](https://github.com/meesterdude))
|
389
|
+
[Full Changelog](https://github.com/reenhanced/gitreflow/compare/v0.5.3...v0.6.0)
|
318
390
|
|
319
391
|
## [v0.5.3](https://github.com/reenhanced/gitreflow/tree/v0.5.3) (2015-05-15)
|
392
|
+
|
320
393
|
[Full Changelog](https://github.com/reenhanced/gitreflow/compare/v0.5.2...v0.5.3)
|
321
394
|
|
322
395
|
**Closed issues:**
|
@@ -330,12 +403,15 @@
|
|
330
403
|
- 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))
|
331
404
|
|
332
405
|
## [v0.5.2](https://github.com/reenhanced/gitreflow/tree/v0.5.2) (2015-04-03)
|
406
|
+
|
333
407
|
[Full Changelog](https://github.com/reenhanced/gitreflow/compare/v0.5.1...v0.5.2)
|
334
408
|
|
335
409
|
## [v0.5.1](https://github.com/reenhanced/gitreflow/tree/v0.5.1) (2015-03-26)
|
410
|
+
|
336
411
|
[Full Changelog](https://github.com/reenhanced/gitreflow/compare/v0.5.0...v0.5.1)
|
337
412
|
|
338
413
|
## [v0.5.0](https://github.com/reenhanced/gitreflow/tree/v0.5.0) (2015-03-26)
|
414
|
+
|
339
415
|
[Full Changelog](https://github.com/reenhanced/gitreflow/compare/v0.4.2...v0.5.0)
|
340
416
|
|
341
417
|
**Fixed bugs:**
|
@@ -347,6 +423,7 @@
|
|
347
423
|
- Changing remote url in \reponame\.git\config to make reflow deliver work [\#75](https://github.com/reenhanced/gitreflow/issues/75)
|
348
424
|
|
349
425
|
## [v0.4.2](https://github.com/reenhanced/gitreflow/tree/v0.4.2) (2015-02-10)
|
426
|
+
|
350
427
|
[Full Changelog](https://github.com/reenhanced/gitreflow/compare/v0.4.1...v0.4.2)
|
351
428
|
|
352
429
|
**Fixed bugs:**
|
@@ -361,6 +438,7 @@
|
|
361
438
|
- Github Enterprise Compatibility [\#42](https://github.com/reenhanced/gitreflow/issues/42)
|
362
439
|
|
363
440
|
## [v0.4.1](https://github.com/reenhanced/gitreflow/tree/v0.4.1) (2014-10-28)
|
441
|
+
|
364
442
|
[Full Changelog](https://github.com/reenhanced/gitreflow/compare/v0.4.0...v0.4.1)
|
365
443
|
|
366
444
|
**Closed issues:**
|
@@ -368,6 +446,7 @@
|
|
368
446
|
- License does not have year and name filled in [\#69](https://github.com/reenhanced/gitreflow/issues/69)
|
369
447
|
|
370
448
|
## [v0.4.0](https://github.com/reenhanced/gitreflow/tree/v0.4.0) (2014-10-16)
|
449
|
+
|
371
450
|
[Full Changelog](https://github.com/reenhanced/gitreflow/compare/v0.3.5...v0.4.0)
|
372
451
|
|
373
452
|
**Merged pull requests:**
|
@@ -376,6 +455,7 @@
|
|
376
455
|
- \[fix\] Show delivery halted message properly [\#63](https://github.com/reenhanced/gitreflow/pull/63) ([shirshendu](https://github.com/shirshendu))
|
377
456
|
|
378
457
|
## [v0.3.5](https://github.com/reenhanced/gitreflow/tree/v0.3.5) (2014-03-05)
|
458
|
+
|
379
459
|
[Full Changelog](https://github.com/reenhanced/gitreflow/compare/v0.3.4...v0.3.5)
|
380
460
|
|
381
461
|
**Closed issues:**
|
@@ -392,6 +472,7 @@
|
|
392
472
|
- 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))
|
393
473
|
|
394
474
|
## [v0.3.4](https://github.com/reenhanced/gitreflow/tree/v0.3.4) (2013-11-01)
|
475
|
+
|
395
476
|
[Full Changelog](https://github.com/reenhanced/gitreflow/compare/v0.3.3...v0.3.4)
|
396
477
|
|
397
478
|
**Fixed bugs:**
|
@@ -404,6 +485,7 @@
|
|
404
485
|
- Print all git commands [\#43](https://github.com/reenhanced/gitreflow/issues/43)
|
405
486
|
|
406
487
|
## [v0.3.3](https://github.com/reenhanced/gitreflow/tree/v0.3.3) (2013-10-16)
|
488
|
+
|
407
489
|
[Full Changelog](https://github.com/reenhanced/gitreflow/compare/v0.3.2...v0.3.3)
|
408
490
|
|
409
491
|
**Closed issues:**
|
@@ -412,37 +494,48 @@
|
|
412
494
|
|
413
495
|
**Merged pull requests:**
|
414
496
|
|
415
|
-
- Fix --skip-lgtm option was never passed to the
|
497
|
+
- Fix --skip-lgtm option was never passed to the `#deliver` method [\#45](https://github.com/reenhanced/gitreflow/pull/45) ([francois](https://github.com/francois))
|
416
498
|
|
417
499
|
## [v0.3.2](https://github.com/reenhanced/gitreflow/tree/v0.3.2) (2013-07-25)
|
500
|
+
|
418
501
|
[Full Changelog](https://github.com/reenhanced/gitreflow/compare/v0.3.1...v0.3.2)
|
419
502
|
|
420
503
|
## [v0.3.1](https://github.com/reenhanced/gitreflow/tree/v0.3.1) (2013-07-12)
|
504
|
+
|
421
505
|
[Full Changelog](https://github.com/reenhanced/gitreflow/compare/v0.3...v0.3.1)
|
422
506
|
|
423
507
|
## [v0.3](https://github.com/reenhanced/gitreflow/tree/v0.3) (2013-07-12)
|
508
|
+
|
424
509
|
[Full Changelog](https://github.com/reenhanced/gitreflow/compare/v0.2.5...v0.3)
|
425
510
|
|
426
511
|
## [v0.2.5](https://github.com/reenhanced/gitreflow/tree/v0.2.5) (2013-03-04)
|
512
|
+
|
427
513
|
[Full Changelog](https://github.com/reenhanced/gitreflow/compare/v0.2.5-with-tests...v0.2.5)
|
428
514
|
|
429
515
|
## [v0.2.5-with-tests](https://github.com/reenhanced/gitreflow/tree/v0.2.5-with-tests) (2013-03-04)
|
516
|
+
|
430
517
|
[Full Changelog](https://github.com/reenhanced/gitreflow/compare/v0.2.4...v0.2.5-with-tests)
|
431
518
|
|
432
519
|
## [v0.2.4](https://github.com/reenhanced/gitreflow/tree/v0.2.4) (2012-09-21)
|
520
|
+
|
433
521
|
[Full Changelog](https://github.com/reenhanced/gitreflow/compare/v0.2.2...v0.2.4)
|
434
522
|
|
435
523
|
## [v0.2.2](https://github.com/reenhanced/gitreflow/tree/v0.2.2) (2012-09-17)
|
524
|
+
|
436
525
|
[Full Changelog](https://github.com/reenhanced/gitreflow/compare/v0.2.1...v0.2.2)
|
437
526
|
|
438
527
|
## [v0.2.1](https://github.com/reenhanced/gitreflow/tree/v0.2.1) (2012-08-30)
|
528
|
+
|
439
529
|
[Full Changelog](https://github.com/reenhanced/gitreflow/compare/v0.2...v0.2.1)
|
440
530
|
|
441
531
|
## [v0.2](https://github.com/reenhanced/gitreflow/tree/v0.2) (2012-08-28)
|
532
|
+
|
533
|
+
[Full Changelog](https://github.com/reenhanced/gitreflow/compare/e84b48641d5ec6f5d87674c9152830e08ffe1b76...v0.2)
|
534
|
+
|
442
535
|
**Merged pull requests:**
|
443
536
|
|
444
537
|
- Adds documentation to reflow [\#13](https://github.com/reenhanced/gitreflow/pull/13) ([nhance](https://github.com/nhance))
|
445
538
|
|
446
539
|
|
447
540
|
|
448
|
-
\* *This
|
541
|
+
\* *This Changelog was automatically generated by [github_changelog_generator](https://github.com/github-changelog-generator/github-changelog-generator)*
|