git-maintain 0.7.0 → 0.9.0rc1
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/CHANGELOG +22 -0
- data/LICENSE +674 -22
- data/README.md +26 -5
- data/bin/git-maintain +8 -5
- data/lib/addons/RDMACore.rb +67 -7
- data/lib/addons/git-maintain.rb +66 -0
- data/lib/azure.rb +98 -0
- data/lib/branch.rb +141 -78
- data/lib/ci.rb +88 -0
- data/lib/common.rb +29 -16
- data/lib/repo.rb +143 -72
- data/lib/travis.rb +19 -62
- metadata +19 -10
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: f34d1ff53cd31f263637a4f2f5c078f4800f9b90168d2f76bf0b127057cf2370
|
4
|
+
data.tar.gz: fb6755dd6741f060a802ed64096948b3ae6f549b4311679ee3ca15f2aae5fb5b
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 3a2e850109a2302dcea6264cae3ff63119993d4fd8777252487dd56ef6ea85642dd6415ccdef74921044be4dc809939171571e193d5c1baccac650f331b3d0d5
|
7
|
+
data.tar.gz: 27a9cb55140d8749ac16fab436df8a21de0bfc3b5df61a5ae07fcedb24c6b68a4851f5a00d71e28e17d3d2da2f1190cfe00c79f7c61386a13d0e6743cf3f9fdb
|
data/CHANGELOG
CHANGED
@@ -1,3 +1,25 @@
|
|
1
|
+
* Do not push branches already in stable to valid repository
|
2
|
+
* Add --yes support
|
3
|
+
* Add --base option for 'steal' command
|
4
|
+
* Add --no-edit option for 'release' command
|
5
|
+
* Enhance subcommands help/usage
|
6
|
+
* RDMACore updates
|
7
|
+
* Allow 'steal' to restart from a given SHA1
|
8
|
+
|
9
|
+
------------------
|
10
|
+
0.8.0 (2020-03-04)
|
11
|
+
------------------
|
12
|
+
|
13
|
+
* Drop dependency to github-release
|
14
|
+
* Add cache for git config
|
15
|
+
* Fixes for the steal command
|
16
|
+
* Support multiple -V options
|
17
|
+
* Factor code to allow multiple CI
|
18
|
+
* Basic Azure CI support
|
19
|
+
* Fix displayed repos in summary command
|
20
|
+
* RDMACore supports multiple CI depending on branches
|
21
|
+
* Add --remote option to 'delete' command to remove upstream staging branches
|
22
|
+
|
1
23
|
------------------
|
2
24
|
0.7.0 (2019-05-29)
|
3
25
|
------------------
|