sleet 0.5.1 → 0.5.2
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.sleet.yml +3 -0
- data/CHANGELOG.md +6 -2
- data/lib/sleet/local_repo.rb +1 -1
- data/lib/sleet/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: da6449a953da99cd33a455fabe362c43289fe5f8dae44383a94aa374b93096d7
|
4
|
+
data.tar.gz: 11fb84037b64b725d164f24e923e0c9fd49583170f8b2bb508051c885a91f3fb
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 11eabd22481ae44fb09ad86877d0e498cb02ebfe7214830fd47829349ebeeb44be86fe6a1474826fca1746c6fcd4b2c133a5f57412003018ab3111762dda2635
|
7
|
+
data.tar.gz: db601fb23667d2d3019fb4ad0d3e8006bc50f04093445891fa8cf53eaf71f31512c766c6fd499b410d7dd4a91134f5fde76301ea3ceea5dee44236f224994984
|
data/.sleet.yml
CHANGED
data/CHANGELOG.md
CHANGED
@@ -1,13 +1,17 @@
|
|
1
1
|
# Changelog
|
2
2
|
|
3
|
-
## [v0.5.
|
3
|
+
## [v0.5.2](https://github.com/coreyja/sleet/tree/v0.5.2) (2020-06-14)
|
4
4
|
|
5
|
-
[Full Changelog](https://github.com/coreyja/sleet/compare/v0.5.
|
5
|
+
[Full Changelog](https://github.com/coreyja/sleet/compare/v0.5.1...v0.5.2)
|
6
6
|
|
7
7
|
**Merged pull requests:**
|
8
8
|
|
9
9
|
- bug: Fix bug in error message when no upstream exists [\#79](https://github.com/coreyja/sleet/pull/79) ([coreyja](https://github.com/coreyja))
|
10
10
|
|
11
|
+
## [v0.5.1](https://github.com/coreyja/sleet/tree/v0.5.1) (2020-06-14)
|
12
|
+
|
13
|
+
[Full Changelog](https://github.com/coreyja/sleet/compare/v0.5.0...v0.5.1)
|
14
|
+
|
11
15
|
## [v0.5.0](https://github.com/coreyja/sleet/tree/v0.5.0) (2020-06-14)
|
12
16
|
|
13
17
|
[Full Changelog](https://github.com/coreyja/sleet/compare/v0.4.3...v0.5.0)
|
data/lib/sleet/local_repo.rb
CHANGED
@@ -64,7 +64,7 @@ module Sleet
|
|
64
64
|
|
65
65
|
def must_have_an_upstream_branch!
|
66
66
|
!current_branch.remote.nil? ||
|
67
|
-
raise(Error, "No upstream branch set for the current branch of #{
|
67
|
+
raise(Error, "No upstream branch set for the current branch of #{current_branch_name}")
|
68
68
|
end
|
69
69
|
|
70
70
|
def upstream_remote_must_be_github!
|
data/lib/sleet/version.rb
CHANGED