git_reflow 0.9.3 → 0.9.7
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 +2 -11
- data/.rubocop.yml +7 -0
- data/.ruby-version +1 -1
- data/CHANGELOG.md +95 -12
- data/Gemfile.lock +99 -59
- data/README.md +7 -3
- data/git_reflow.gemspec +6 -6
- data/lib/git_reflow/config.rb +4 -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 +3 -2
- 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 +12 -5
- 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/pull_request_spec.rb +33 -5
- data/spec/lib/git_reflow_spec.rb +0 -1
- data/spec/spec_helper.rb +1 -1
- metadata +16 -16
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 1049ee579917beb9c33f04ccb87cd8e285a29dba2afcea18e2719702f601d82f
|
|
4
|
+
data.tar.gz: a4693da0d8bfac1e780968c97186824162739e1f01d32801ff13cf27ff502f8b
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 32a82c47a85c4944c0b0dc467cdf077f6b684d7139fd7185944dc6f2b6fd19debf4610011dd18ba6261df9ae435ac8de3b89bfb3a81102c28937f509664bde29
|
|
7
|
+
data.tar.gz: cb294516aca558b9debcf7b4ca0255228afc686a85c552a6f8a6ac4b4a52833a560e42ca09d7f36652ed281aaff3766e9d10dfa5e9e742f8169c186a85be91aa
|
|
@@ -12,22 +12,13 @@ jobs:
|
|
|
12
12
|
fail-fast: true
|
|
13
13
|
matrix:
|
|
14
14
|
os: [ ubuntu-latest, macos-latest ]
|
|
15
|
-
ruby: ['2.
|
|
15
|
+
ruby: ['2.6.6', '2.7.2', '3.0.0 ']
|
|
16
16
|
runs-on: ${{ matrix.os }}
|
|
17
17
|
steps:
|
|
18
18
|
- uses: actions/checkout@v2
|
|
19
19
|
- uses: ruby/setup-ruby@v1
|
|
20
20
|
with:
|
|
21
21
|
ruby-version: ${{ matrix.ruby }}
|
|
22
|
-
|
|
23
|
-
with:
|
|
24
|
-
path: vendor/bundle
|
|
25
|
-
key: bundle-use-ruby-${{ matrix.os }}-${{ matrix.ruby }}-${{ hashFiles('**/Gemfile.lock') }}
|
|
26
|
-
restore-keys: |
|
|
27
|
-
bundle-use-ruby-${{ matrix.os }}-${{ matrix.ruby }}-
|
|
28
|
-
- name: bundle install
|
|
29
|
-
run: |
|
|
30
|
-
bundle config path vendor/bundle
|
|
31
|
-
bundle install --jobs 4 --retry 3
|
|
22
|
+
bundler-cache: true
|
|
32
23
|
- name: Run Tests for Ruby ${{ matrix.ruby }} on ${{ matrix.os }}
|
|
33
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,47 @@
|
|
|
1
|
-
#
|
|
1
|
+
# Changelog
|
|
2
2
|
|
|
3
|
-
## [
|
|
3
|
+
## [v0.9.7](https://github.com/reenhanced/gitreflow/tree/v0.9.7) (2022-02-20)
|
|
4
|
+
|
|
5
|
+
[Full Changelog](https://github.com/reenhanced/gitreflow/compare/v0.9.6...HEAD)
|
|
6
|
+
|
|
7
|
+
**Bug fixes:**
|
|
8
|
+
|
|
9
|
+
- Correctly parse command line flag and switch values when no help docs are provided
|
|
10
|
+
|
|
11
|
+
## [v0.9.6](https://github.com/reenhanced/gitreflow/tree/v0.9.6) (2021-11-05)
|
|
12
|
+
|
|
13
|
+
[Full Changelog](https://github.com/reenhanced/gitreflow/compare/v0.9.5...HEAD)
|
|
14
|
+
|
|
15
|
+
**Implemented enhancements:**
|
|
16
|
+
|
|
17
|
+
- Use GitHub PR Templates? [\#251](https://github.com/reenhanced/gitreflow/issues/251)
|
|
18
|
+
|
|
19
|
+
**Merged pull requests:**
|
|
20
|
+
|
|
21
|
+
- Introduce configurable PR and merge commit templates [\#252](https://github.com/reenhanced/gitreflow/pull/252) ([codenamev](https://github.com/codenamev))
|
|
22
|
+
|
|
23
|
+
## [v0.9.5](https://github.com/reenhanced/gitreflow/tree/v0.9.5) (2021-03-25)
|
|
24
|
+
|
|
25
|
+
[Full Changelog](https://github.com/reenhanced/gitreflow/compare/v0.9.4...v0.9.5)
|
|
26
|
+
|
|
27
|
+
**Fixed bugs:**
|
|
28
|
+
|
|
29
|
+
- Deprecation warnings with Ruby 2.7.0 [\#239](https://github.com/reenhanced/gitreflow/issues/239)
|
|
30
|
+
|
|
31
|
+
**Merged pull requests:**
|
|
32
|
+
|
|
33
|
+
- Support for Ruby 3.0 [\#249](https://github.com/reenhanced/gitreflow/pull/249) ([codenamev](https://github.com/codenamev))
|
|
34
|
+
|
|
35
|
+
## [v0.9.4](https://github.com/reenhanced/gitreflow/tree/v0.9.4) (2020-11-10)
|
|
36
|
+
|
|
37
|
+
[Full Changelog](https://github.com/reenhanced/gitreflow/compare/v0.9.3...v0.9.4)
|
|
38
|
+
|
|
39
|
+
**Merged pull requests:**
|
|
40
|
+
|
|
41
|
+
- Fix critical issue, and update deps [\#245](https://github.com/reenhanced/gitreflow/pull/245) ([codenamev](https://github.com/codenamev))
|
|
42
|
+
- Fixed typo [\#244](https://github.com/reenhanced/gitreflow/pull/244) ([hsbt](https://github.com/hsbt))
|
|
43
|
+
|
|
44
|
+
## [v0.9.3](https://github.com/reenhanced/gitreflow/tree/v0.9.3) (2020-06-02)
|
|
4
45
|
|
|
5
46
|
[Full Changelog](https://github.com/reenhanced/gitreflow/compare/v0.9.2...v0.9.3)
|
|
6
47
|
|
|
@@ -20,6 +61,8 @@
|
|
|
20
61
|
- Documention for GitReflow::Config [\#238](https://github.com/reenhanced/gitreflow/pull/238) ([PuZZleDucK](https://github.com/PuZZleDucK))
|
|
21
62
|
- Fixes several issues related to git-reflow setup [\#236](https://github.com/reenhanced/gitreflow/pull/236) ([codenamev](https://github.com/codenamev))
|
|
22
63
|
|
|
64
|
+
## [v0.9.2](https://github.com/reenhanced/gitreflow/tree/v0.9.2) (2019-09-10)
|
|
65
|
+
|
|
23
66
|
[Full Changelog](https://github.com/reenhanced/gitreflow/compare/v0.9.1...v0.9.2)
|
|
24
67
|
|
|
25
68
|
**Closed issues:**
|
|
@@ -29,9 +72,9 @@
|
|
|
29
72
|
**Merged pull requests:**
|
|
30
73
|
|
|
31
74
|
- Update dependencies and trap INT signal [\#235](https://github.com/reenhanced/gitreflow/pull/235) ([codenamev](https://github.com/codenamev))
|
|
32
|
-
- 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))
|
|
33
75
|
|
|
34
76
|
## [v0.9.1](https://github.com/reenhanced/gitreflow/tree/v0.9.1) (2019-04-17)
|
|
77
|
+
|
|
35
78
|
[Full Changelog](https://github.com/reenhanced/gitreflow/compare/v0.9.0...v0.9.1)
|
|
36
79
|
|
|
37
80
|
**Closed issues:**
|
|
@@ -39,6 +82,7 @@
|
|
|
39
82
|
- Purpose of core `stage` command? [\#232](https://github.com/reenhanced/gitreflow/issues/232)
|
|
40
83
|
|
|
41
84
|
## [v0.9.0](https://github.com/reenhanced/gitreflow/tree/v0.9.0) (2018-11-09)
|
|
85
|
+
|
|
42
86
|
[Full Changelog](https://github.com/reenhanced/gitreflow/compare/v0.8.10...v0.9.0)
|
|
43
87
|
|
|
44
88
|
**Implemented enhancements:**
|
|
@@ -68,17 +112,19 @@
|
|
|
68
112
|
- Allow for custom commit/merge message templates [\#223](https://github.com/reenhanced/gitreflow/pull/223) ([codenamev](https://github.com/codenamev))
|
|
69
113
|
|
|
70
114
|
## [v0.8.10](https://github.com/reenhanced/gitreflow/tree/v0.8.10) (2018-04-19)
|
|
115
|
+
|
|
71
116
|
[Full Changelog](https://github.com/reenhanced/gitreflow/compare/v0.8.9...v0.8.10)
|
|
72
117
|
|
|
73
118
|
**Merged pull requests:**
|
|
74
119
|
|
|
75
120
|
- Updates rubies and gems [\#221](https://github.com/reenhanced/gitreflow/pull/221) ([codenamev](https://github.com/codenamev))
|
|
76
|
-
- Remove lingering `
|
|
121
|
+
- Remove lingering `skip_lgtm` options in favor of `force` option [\#218](https://github.com/reenhanced/gitreflow/pull/218) ([codenamev](https://github.com/codenamev))
|
|
77
122
|
- Remove dead code [\#217](https://github.com/reenhanced/gitreflow/pull/217) ([codenamev](https://github.com/codenamev))
|
|
78
123
|
- Updates REAME to Markdown [\#216](https://github.com/reenhanced/gitreflow/pull/216) ([codenamev](https://github.com/codenamev))
|
|
79
124
|
- Updates readme with details on customization [\#214](https://github.com/reenhanced/gitreflow/pull/214) ([codenamev](https://github.com/codenamev))
|
|
80
125
|
|
|
81
126
|
## [v0.8.9](https://github.com/reenhanced/gitreflow/tree/v0.8.9) (2017-04-26)
|
|
127
|
+
|
|
82
128
|
[Full Changelog](https://github.com/reenhanced/gitreflow/compare/v0.8.8...v0.8.9)
|
|
83
129
|
|
|
84
130
|
**Fixed bugs:**
|
|
@@ -91,9 +137,11 @@
|
|
|
91
137
|
- Adds checks for new GH reviews when delivering [\#215](https://github.com/reenhanced/gitreflow/pull/215) ([codenamev](https://github.com/codenamev))
|
|
92
138
|
|
|
93
139
|
## [v0.8.8](https://github.com/reenhanced/gitreflow/tree/v0.8.8) (2017-04-24)
|
|
140
|
+
|
|
94
141
|
[Full Changelog](https://github.com/reenhanced/gitreflow/compare/v0.8.7...v0.8.8)
|
|
95
142
|
|
|
96
143
|
## [v0.8.7](https://github.com/reenhanced/gitreflow/tree/v0.8.7) (2017-04-21)
|
|
144
|
+
|
|
97
145
|
[Full Changelog](https://github.com/reenhanced/gitreflow/compare/v0.8.4...v0.8.7)
|
|
98
146
|
|
|
99
147
|
**Implemented enhancements:**
|
|
@@ -111,7 +159,7 @@
|
|
|
111
159
|
**Merged pull requests:**
|
|
112
160
|
|
|
113
161
|
- 0.8.7 [\#213](https://github.com/reenhanced/gitreflow/pull/213) ([nhance](https://github.com/nhance))
|
|
114
|
-
- Updates Github merge request to use new `
|
|
162
|
+
- Updates Github merge request to use new `merge_method` param [\#211](https://github.com/reenhanced/gitreflow/pull/211) ([codenamev](https://github.com/codenamev))
|
|
115
163
|
- Adds a logger to log command runs [\#210](https://github.com/reenhanced/gitreflow/pull/210) ([codenamev](https://github.com/codenamev))
|
|
116
164
|
- 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))
|
|
117
165
|
- Fix loading of PR template from '.github' directory [\#208](https://github.com/reenhanced/gitreflow/pull/208) ([codenamev](https://github.com/codenamev))
|
|
@@ -120,6 +168,7 @@
|
|
|
120
168
|
- \[53\] Allow workflows to be loaded from git config [\#199](https://github.com/reenhanced/gitreflow/pull/199) ([codenamev](https://github.com/codenamev))
|
|
121
169
|
|
|
122
170
|
## [v0.8.4](https://github.com/reenhanced/gitreflow/tree/v0.8.4) (2016-08-22)
|
|
171
|
+
|
|
123
172
|
[Full Changelog](https://github.com/reenhanced/gitreflow/compare/v0.8.3...v0.8.4)
|
|
124
173
|
|
|
125
174
|
**Closed issues:**
|
|
@@ -132,9 +181,11 @@
|
|
|
132
181
|
- \[53\] Create core workflow module to consolidate commands [\#198](https://github.com/reenhanced/gitreflow/pull/198) ([codenamev](https://github.com/codenamev))
|
|
133
182
|
|
|
134
183
|
## [v0.8.3](https://github.com/reenhanced/gitreflow/tree/v0.8.3) (2016-08-04)
|
|
184
|
+
|
|
135
185
|
[Full Changelog](https://github.com/reenhanced/gitreflow/compare/v0.8.2...v0.8.3)
|
|
136
186
|
|
|
137
187
|
## [v0.8.2](https://github.com/reenhanced/gitreflow/tree/v0.8.2) (2016-08-01)
|
|
188
|
+
|
|
138
189
|
[Full Changelog](https://github.com/reenhanced/gitreflow/compare/v0.8.1...v0.8.2)
|
|
139
190
|
|
|
140
191
|
**Fixed bugs:**
|
|
@@ -143,7 +194,6 @@
|
|
|
143
194
|
|
|
144
195
|
**Closed issues:**
|
|
145
196
|
|
|
146
|
-
- GitHub authentication issues [\#193](https://github.com/reenhanced/gitreflow/issues/193)
|
|
147
197
|
- non-master base branch does not work for the deliver command [\#192](https://github.com/reenhanced/gitreflow/issues/192)
|
|
148
198
|
- git-reflow fork command [\#188](https://github.com/reenhanced/gitreflow/issues/188)
|
|
149
199
|
- Bitbucket setup not working [\#186](https://github.com/reenhanced/gitreflow/issues/186)
|
|
@@ -163,6 +213,7 @@
|
|
|
163
213
|
- Respect GitHub pull request template [\#179](https://github.com/reenhanced/gitreflow/pull/179) ([timraasveld](https://github.com/timraasveld))
|
|
164
214
|
|
|
165
215
|
## [v0.8.1](https://github.com/reenhanced/gitreflow/tree/v0.8.1) (2016-05-26)
|
|
216
|
+
|
|
166
217
|
[Full Changelog](https://github.com/reenhanced/gitreflow/compare/v0.8.0...v0.8.1)
|
|
167
218
|
|
|
168
219
|
**Closed issues:**
|
|
@@ -175,6 +226,7 @@
|
|
|
175
226
|
- Support for non-master branch [\#73](https://github.com/reenhanced/gitreflow/issues/73)
|
|
176
227
|
|
|
177
228
|
## [v0.8.0](https://github.com/reenhanced/gitreflow/tree/v0.8.0) (2016-05-26)
|
|
229
|
+
|
|
178
230
|
[Full Changelog](https://github.com/reenhanced/gitreflow/compare/v0.7.5...v0.8.0)
|
|
179
231
|
|
|
180
232
|
**Implemented enhancements:**
|
|
@@ -201,6 +253,7 @@
|
|
|
201
253
|
- \[issue: 162\] Updating Rspecs: Use "Allow" instead of "Stub" [\#163](https://github.com/reenhanced/gitreflow/pull/163) ([simonzhu24](https://github.com/simonzhu24))
|
|
202
254
|
|
|
203
255
|
## [v0.7.5](https://github.com/reenhanced/gitreflow/tree/v0.7.5) (2016-04-14)
|
|
256
|
+
|
|
204
257
|
[Full Changelog](https://github.com/reenhanced/gitreflow/compare/v0.7.4...v0.7.5)
|
|
205
258
|
|
|
206
259
|
**Implemented enhancements:**
|
|
@@ -219,6 +272,7 @@
|
|
|
219
272
|
- Remove unused gitreflow-common [\#155](https://github.com/reenhanced/gitreflow/pull/155) ([pboling](https://github.com/pboling))
|
|
220
273
|
|
|
221
274
|
## [v0.7.4](https://github.com/reenhanced/gitreflow/tree/v0.7.4) (2016-04-08)
|
|
275
|
+
|
|
222
276
|
[Full Changelog](https://github.com/reenhanced/gitreflow/compare/v0.7.3...v0.7.4)
|
|
223
277
|
|
|
224
278
|
**Fixed bugs:**
|
|
@@ -227,6 +281,7 @@
|
|
|
227
281
|
- SSL Verification is turned off [\#151](https://github.com/reenhanced/gitreflow/issues/151)
|
|
228
282
|
|
|
229
283
|
## [v0.7.3](https://github.com/reenhanced/gitreflow/tree/v0.7.3) (2016-03-24)
|
|
284
|
+
|
|
230
285
|
[Full Changelog](https://github.com/reenhanced/gitreflow/compare/v0.7.2...v0.7.3)
|
|
231
286
|
|
|
232
287
|
**Fixed bugs:**
|
|
@@ -240,6 +295,7 @@
|
|
|
240
295
|
- Store OAuth token somewhere else? [\#54](https://github.com/reenhanced/gitreflow/issues/54)
|
|
241
296
|
|
|
242
297
|
## [v0.7.2](https://github.com/reenhanced/gitreflow/tree/v0.7.2) (2016-02-22)
|
|
298
|
+
|
|
243
299
|
[Full Changelog](https://github.com/reenhanced/gitreflow/compare/v0.7.1...v0.7.2)
|
|
244
300
|
|
|
245
301
|
**Closed issues:**
|
|
@@ -249,6 +305,7 @@
|
|
|
249
305
|
- Deliver to custom branch? [\#144](https://github.com/reenhanced/gitreflow/issues/144)
|
|
250
306
|
|
|
251
307
|
## [v0.7.1](https://github.com/reenhanced/gitreflow/tree/v0.7.1) (2015-10-27)
|
|
308
|
+
|
|
252
309
|
[Full Changelog](https://github.com/reenhanced/gitreflow/compare/v0.7.0...v0.7.1)
|
|
253
310
|
|
|
254
311
|
**Merged pull requests:**
|
|
@@ -256,6 +313,7 @@
|
|
|
256
313
|
- Fix the ask to open in browser dialog on Mac. [\#143](https://github.com/reenhanced/gitreflow/pull/143) ([squaresurf](https://github.com/squaresurf))
|
|
257
314
|
|
|
258
315
|
## [v0.7.0](https://github.com/reenhanced/gitreflow/tree/v0.7.0) (2015-10-14)
|
|
316
|
+
|
|
259
317
|
[Full Changelog](https://github.com/reenhanced/gitreflow/compare/v0.6.7...v0.7.0)
|
|
260
318
|
|
|
261
319
|
**Fixed bugs:**
|
|
@@ -267,9 +325,11 @@
|
|
|
267
325
|
- Command Injection in append\_to\_squashed\_commit\_message. [\#134](https://github.com/reenhanced/gitreflow/issues/134)
|
|
268
326
|
|
|
269
327
|
## [v0.6.7](https://github.com/reenhanced/gitreflow/tree/v0.6.7) (2015-09-29)
|
|
328
|
+
|
|
270
329
|
[Full Changelog](https://github.com/reenhanced/gitreflow/compare/v0.6.6...v0.6.7)
|
|
271
330
|
|
|
272
331
|
## [v0.6.6](https://github.com/reenhanced/gitreflow/tree/v0.6.6) (2015-09-28)
|
|
332
|
+
|
|
273
333
|
[Full Changelog](https://github.com/reenhanced/gitreflow/compare/v0.6.5...v0.6.6)
|
|
274
334
|
|
|
275
335
|
**Merged pull requests:**
|
|
@@ -277,6 +337,7 @@
|
|
|
277
337
|
- Fix review message parsing from editor failed [\#133](https://github.com/reenhanced/gitreflow/pull/133) ([francois](https://github.com/francois))
|
|
278
338
|
|
|
279
339
|
## [v0.6.5](https://github.com/reenhanced/gitreflow/tree/v0.6.5) (2015-08-31)
|
|
340
|
+
|
|
280
341
|
[Full Changelog](https://github.com/reenhanced/gitreflow/compare/v0.6.4...v0.6.5)
|
|
281
342
|
|
|
282
343
|
**Closed issues:**
|
|
@@ -285,6 +346,7 @@
|
|
|
285
346
|
- Feature Request: command to cleanly land a contributor's PR [\#128](https://github.com/reenhanced/gitreflow/issues/128)
|
|
286
347
|
|
|
287
348
|
## [v0.6.4](https://github.com/reenhanced/gitreflow/tree/v0.6.4) (2015-08-04)
|
|
349
|
+
|
|
288
350
|
[Full Changelog](https://github.com/reenhanced/gitreflow/compare/v0.6.3...v0.6.4)
|
|
289
351
|
|
|
290
352
|
**Fixed bugs:**
|
|
@@ -292,6 +354,7 @@
|
|
|
292
354
|
- reflow needs an lgtm from myself [\#116](https://github.com/reenhanced/gitreflow/issues/116)
|
|
293
355
|
|
|
294
356
|
## [v0.6.3](https://github.com/reenhanced/gitreflow/tree/v0.6.3) (2015-08-03)
|
|
357
|
+
|
|
295
358
|
[Full Changelog](https://github.com/reenhanced/gitreflow/compare/v0.6.2...v0.6.3)
|
|
296
359
|
|
|
297
360
|
**Closed issues:**
|
|
@@ -300,6 +363,7 @@
|
|
|
300
363
|
- Error: \#\<NameError: wrong constant name \> [\#120](https://github.com/reenhanced/gitreflow/issues/120)
|
|
301
364
|
|
|
302
365
|
## [v0.6.2](https://github.com/reenhanced/gitreflow/tree/v0.6.2) (2015-08-03)
|
|
366
|
+
|
|
303
367
|
[Full Changelog](https://github.com/reenhanced/gitreflow/compare/v0.6.1...v0.6.2)
|
|
304
368
|
|
|
305
369
|
**Fixed bugs:**
|
|
@@ -321,6 +385,7 @@
|
|
|
321
385
|
- Add number attribute to Base:PullRequest [\#110](https://github.com/reenhanced/gitreflow/pull/110) ([tanin47](https://github.com/tanin47))
|
|
322
386
|
|
|
323
387
|
## [v0.6.1](https://github.com/reenhanced/gitreflow/tree/v0.6.1) (2015-06-02)
|
|
388
|
+
|
|
324
389
|
[Full Changelog](https://github.com/reenhanced/gitreflow/compare/v0.6.0...v0.6.1)
|
|
325
390
|
|
|
326
391
|
**Closed issues:**
|
|
@@ -328,13 +393,11 @@
|
|
|
328
393
|
- git reflow setup not working [\#106](https://github.com/reenhanced/gitreflow/issues/106)
|
|
329
394
|
|
|
330
395
|
## [v0.6.0](https://github.com/reenhanced/gitreflow/tree/v0.6.0) (2015-05-15)
|
|
331
|
-
[Full Changelog](https://github.com/reenhanced/gitreflow/compare/v0.5.3...v0.6.0)
|
|
332
396
|
|
|
333
|
-
|
|
334
|
-
|
|
335
|
-
- new functionality for review [\#99](https://github.com/reenhanced/gitreflow/pull/99) ([meesterdude](https://github.com/meesterdude))
|
|
397
|
+
[Full Changelog](https://github.com/reenhanced/gitreflow/compare/v0.5.3...v0.6.0)
|
|
336
398
|
|
|
337
399
|
## [v0.5.3](https://github.com/reenhanced/gitreflow/tree/v0.5.3) (2015-05-15)
|
|
400
|
+
|
|
338
401
|
[Full Changelog](https://github.com/reenhanced/gitreflow/compare/v0.5.2...v0.5.3)
|
|
339
402
|
|
|
340
403
|
**Closed issues:**
|
|
@@ -348,12 +411,15 @@
|
|
|
348
411
|
- 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))
|
|
349
412
|
|
|
350
413
|
## [v0.5.2](https://github.com/reenhanced/gitreflow/tree/v0.5.2) (2015-04-03)
|
|
414
|
+
|
|
351
415
|
[Full Changelog](https://github.com/reenhanced/gitreflow/compare/v0.5.1...v0.5.2)
|
|
352
416
|
|
|
353
417
|
## [v0.5.1](https://github.com/reenhanced/gitreflow/tree/v0.5.1) (2015-03-26)
|
|
418
|
+
|
|
354
419
|
[Full Changelog](https://github.com/reenhanced/gitreflow/compare/v0.5.0...v0.5.1)
|
|
355
420
|
|
|
356
421
|
## [v0.5.0](https://github.com/reenhanced/gitreflow/tree/v0.5.0) (2015-03-26)
|
|
422
|
+
|
|
357
423
|
[Full Changelog](https://github.com/reenhanced/gitreflow/compare/v0.4.2...v0.5.0)
|
|
358
424
|
|
|
359
425
|
**Fixed bugs:**
|
|
@@ -365,6 +431,7 @@
|
|
|
365
431
|
- Changing remote url in \reponame\.git\config to make reflow deliver work [\#75](https://github.com/reenhanced/gitreflow/issues/75)
|
|
366
432
|
|
|
367
433
|
## [v0.4.2](https://github.com/reenhanced/gitreflow/tree/v0.4.2) (2015-02-10)
|
|
434
|
+
|
|
368
435
|
[Full Changelog](https://github.com/reenhanced/gitreflow/compare/v0.4.1...v0.4.2)
|
|
369
436
|
|
|
370
437
|
**Fixed bugs:**
|
|
@@ -379,6 +446,7 @@
|
|
|
379
446
|
- Github Enterprise Compatibility [\#42](https://github.com/reenhanced/gitreflow/issues/42)
|
|
380
447
|
|
|
381
448
|
## [v0.4.1](https://github.com/reenhanced/gitreflow/tree/v0.4.1) (2014-10-28)
|
|
449
|
+
|
|
382
450
|
[Full Changelog](https://github.com/reenhanced/gitreflow/compare/v0.4.0...v0.4.1)
|
|
383
451
|
|
|
384
452
|
**Closed issues:**
|
|
@@ -386,6 +454,7 @@
|
|
|
386
454
|
- License does not have year and name filled in [\#69](https://github.com/reenhanced/gitreflow/issues/69)
|
|
387
455
|
|
|
388
456
|
## [v0.4.0](https://github.com/reenhanced/gitreflow/tree/v0.4.0) (2014-10-16)
|
|
457
|
+
|
|
389
458
|
[Full Changelog](https://github.com/reenhanced/gitreflow/compare/v0.3.5...v0.4.0)
|
|
390
459
|
|
|
391
460
|
**Merged pull requests:**
|
|
@@ -394,6 +463,7 @@
|
|
|
394
463
|
- \[fix\] Show delivery halted message properly [\#63](https://github.com/reenhanced/gitreflow/pull/63) ([shirshendu](https://github.com/shirshendu))
|
|
395
464
|
|
|
396
465
|
## [v0.3.5](https://github.com/reenhanced/gitreflow/tree/v0.3.5) (2014-03-05)
|
|
466
|
+
|
|
397
467
|
[Full Changelog](https://github.com/reenhanced/gitreflow/compare/v0.3.4...v0.3.5)
|
|
398
468
|
|
|
399
469
|
**Closed issues:**
|
|
@@ -410,6 +480,7 @@
|
|
|
410
480
|
- 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))
|
|
411
481
|
|
|
412
482
|
## [v0.3.4](https://github.com/reenhanced/gitreflow/tree/v0.3.4) (2013-11-01)
|
|
483
|
+
|
|
413
484
|
[Full Changelog](https://github.com/reenhanced/gitreflow/compare/v0.3.3...v0.3.4)
|
|
414
485
|
|
|
415
486
|
**Fixed bugs:**
|
|
@@ -422,6 +493,7 @@
|
|
|
422
493
|
- Print all git commands [\#43](https://github.com/reenhanced/gitreflow/issues/43)
|
|
423
494
|
|
|
424
495
|
## [v0.3.3](https://github.com/reenhanced/gitreflow/tree/v0.3.3) (2013-10-16)
|
|
496
|
+
|
|
425
497
|
[Full Changelog](https://github.com/reenhanced/gitreflow/compare/v0.3.2...v0.3.3)
|
|
426
498
|
|
|
427
499
|
**Closed issues:**
|
|
@@ -430,37 +502,48 @@
|
|
|
430
502
|
|
|
431
503
|
**Merged pull requests:**
|
|
432
504
|
|
|
433
|
-
- Fix --skip-lgtm option was never passed to the
|
|
505
|
+
- Fix --skip-lgtm option was never passed to the `#deliver` method [\#45](https://github.com/reenhanced/gitreflow/pull/45) ([francois](https://github.com/francois))
|
|
434
506
|
|
|
435
507
|
## [v0.3.2](https://github.com/reenhanced/gitreflow/tree/v0.3.2) (2013-07-25)
|
|
508
|
+
|
|
436
509
|
[Full Changelog](https://github.com/reenhanced/gitreflow/compare/v0.3.1...v0.3.2)
|
|
437
510
|
|
|
438
511
|
## [v0.3.1](https://github.com/reenhanced/gitreflow/tree/v0.3.1) (2013-07-12)
|
|
512
|
+
|
|
439
513
|
[Full Changelog](https://github.com/reenhanced/gitreflow/compare/v0.3...v0.3.1)
|
|
440
514
|
|
|
441
515
|
## [v0.3](https://github.com/reenhanced/gitreflow/tree/v0.3) (2013-07-12)
|
|
516
|
+
|
|
442
517
|
[Full Changelog](https://github.com/reenhanced/gitreflow/compare/v0.2.5...v0.3)
|
|
443
518
|
|
|
444
519
|
## [v0.2.5](https://github.com/reenhanced/gitreflow/tree/v0.2.5) (2013-03-04)
|
|
520
|
+
|
|
445
521
|
[Full Changelog](https://github.com/reenhanced/gitreflow/compare/v0.2.5-with-tests...v0.2.5)
|
|
446
522
|
|
|
447
523
|
## [v0.2.5-with-tests](https://github.com/reenhanced/gitreflow/tree/v0.2.5-with-tests) (2013-03-04)
|
|
524
|
+
|
|
448
525
|
[Full Changelog](https://github.com/reenhanced/gitreflow/compare/v0.2.4...v0.2.5-with-tests)
|
|
449
526
|
|
|
450
527
|
## [v0.2.4](https://github.com/reenhanced/gitreflow/tree/v0.2.4) (2012-09-21)
|
|
528
|
+
|
|
451
529
|
[Full Changelog](https://github.com/reenhanced/gitreflow/compare/v0.2.2...v0.2.4)
|
|
452
530
|
|
|
453
531
|
## [v0.2.2](https://github.com/reenhanced/gitreflow/tree/v0.2.2) (2012-09-17)
|
|
532
|
+
|
|
454
533
|
[Full Changelog](https://github.com/reenhanced/gitreflow/compare/v0.2.1...v0.2.2)
|
|
455
534
|
|
|
456
535
|
## [v0.2.1](https://github.com/reenhanced/gitreflow/tree/v0.2.1) (2012-08-30)
|
|
536
|
+
|
|
457
537
|
[Full Changelog](https://github.com/reenhanced/gitreflow/compare/v0.2...v0.2.1)
|
|
458
538
|
|
|
459
539
|
## [v0.2](https://github.com/reenhanced/gitreflow/tree/v0.2) (2012-08-28)
|
|
540
|
+
|
|
541
|
+
[Full Changelog](https://github.com/reenhanced/gitreflow/compare/e84b48641d5ec6f5d87674c9152830e08ffe1b76...v0.2)
|
|
542
|
+
|
|
460
543
|
**Merged pull requests:**
|
|
461
544
|
|
|
462
545
|
- Adds documentation to reflow [\#13](https://github.com/reenhanced/gitreflow/pull/13) ([nhance](https://github.com/nhance))
|
|
463
546
|
|
|
464
547
|
|
|
465
548
|
|
|
466
|
-
\* *This
|
|
549
|
+
\* *This Changelog was automatically generated by [github_changelog_generator](https://github.com/github-changelog-generator/github-changelog-generator)*
|