git-process 1.0.6 → 1.0.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.
- data/CHANGELOG.md +13 -9
- data/lib/git-process/git_process_options.rb +1 -1
- data/lib/git-process/version.rb +1 -1
- metadata +4 -4
data/CHANGELOG.md
CHANGED
@@ -1,18 +1,22 @@
|
|
1
|
-
# CHANGELOG - 1.0.
|
1
|
+
# CHANGELOG - 1.0.7 #
|
2
|
+
|
3
|
+
### Since 1.0.6 ###
|
4
|
+
|
5
|
+
* Fixed bug caused by CLI conflict on -i. [GH-13](https://github.com/jdigger/git-process/issues/13)
|
2
6
|
|
3
7
|
### Since 1.0.5 ###
|
4
8
|
|
5
|
-
* Adds option to make rebase the default for git-sync.
|
6
|
-
* git-sync is now "safer" when working with other people on the same branch.
|
7
|
-
* Interactive rebase is now
|
8
|
-
* Simplified/improved arguments for git-pull-request
|
9
|
-
* Adds some more known statuses.
|
9
|
+
* Adds option to make rebase the default for git-sync. [GH-82](https://github.com/jdigger/git-process/issues/82)
|
10
|
+
* git-sync is now "safer" when working with other people on the same branch. [GH-80](https://github.com/jdigger/git-process/issues/80)
|
11
|
+
* Interactive rebase is now an option for git-to-master. [GH-13](https://github.com/jdigger/git-process/issues/13)
|
12
|
+
* Simplified/improved arguments for git-pull-request [GH-86](https://github.com/jdigger/git-process/issues/86)
|
13
|
+
* Adds some more known statuses. [GH-84](https://github.com/jdigger/git-process/issues/84), [GH-88](https://github.com/jdigger/git-process/issues/88)
|
10
14
|
|
11
15
|
### Since 1.0.4 ###
|
12
16
|
|
13
|
-
* Do not try to fetch/push when doing sync if there is not remote. (
|
14
|
-
* git-sync now merges in upstream changes. (
|
15
|
-
* Simplified Windows installation instructions. (
|
17
|
+
* Do not try to fetch/push when doing sync if there is not remote. (#70)
|
18
|
+
* git-sync now merges in upstream changes. (#79)
|
19
|
+
* Simplified Windows installation instructions. (#76 #77)
|
16
20
|
|
17
21
|
### Since 1.0.3 ###
|
18
22
|
|
@@ -53,7 +53,7 @@ module GitProc
|
|
53
53
|
|
54
54
|
|
55
55
|
def standard_opts(parser)
|
56
|
-
parser.opt :info, "Informational messages; show the major things this is doing", :
|
56
|
+
parser.opt :info, "Informational messages; show the major things this is doing", :default => true, :short => :none
|
57
57
|
parser.opt :quiet, "Quiet messages; only show errors", :short => :q
|
58
58
|
parser.opt :verbose, "Verbose messages; show lots of details on what this is doing", :short => :v
|
59
59
|
parser.opt :version, "Print version (#{GitProc::Version::STRING}) and exit", :short => :none
|
data/lib/git-process/version.rb
CHANGED
metadata
CHANGED
@@ -1,13 +1,13 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: git-process
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
hash:
|
4
|
+
hash: 25
|
5
5
|
prerelease:
|
6
6
|
segments:
|
7
7
|
- 1
|
8
8
|
- 0
|
9
|
-
-
|
10
|
-
version: 1.0.
|
9
|
+
- 7
|
10
|
+
version: 1.0.7
|
11
11
|
platform: ruby
|
12
12
|
authors:
|
13
13
|
- Jim Moore
|
@@ -15,7 +15,7 @@ autorequire:
|
|
15
15
|
bindir: bin
|
16
16
|
cert_chain: []
|
17
17
|
|
18
|
-
date: 2012-11-
|
18
|
+
date: 2012-11-08 00:00:00 Z
|
19
19
|
dependencies:
|
20
20
|
- !ruby/object:Gem::Dependency
|
21
21
|
requirement: &id001 !ruby/object:Gem::Requirement
|