squared 0.3.4 → 0.3.5
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.md +14 -0
- data/lib/squared/version.rb +1 -1
- data/lib/squared/workspace/project/git.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: 0bc9a21d89644d6af172db450fcd7e4221df93564e8a047791f47cb536d27abd
|
4
|
+
data.tar.gz: 3e2b746efc3797971655d80430135e2a599018e6c8037ebaab3d70200409e74b
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 2f7351e9a9aeef1cd2016d3406d6d71408a6e7ae1b51d9e0973e56eae5bf290c3ecf633e12ddec196bf5b21f53a7c97e0762f5fdfc78e4c22c9f54bd2e9a235a
|
7
|
+
data.tar.gz: 7c699292f19f06c8a03e8e92a7ccc2e82fe7ce640acd268a60c31b12e2a4dc9fa10669b357222e3b3c3ee2227b7846f9e5fa91f6da9d499d7b6ff8340e440958
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,17 @@
|
|
1
1
|
# Changelog
|
2
2
|
|
3
|
+
## [0.3.5] - 2025-03-06
|
4
|
+
|
5
|
+
### Fixed
|
6
|
+
|
7
|
+
- See `0.2.6`.
|
8
|
+
|
9
|
+
## [0.2.6] - 2025-03-06
|
10
|
+
|
11
|
+
### Fixed
|
12
|
+
|
13
|
+
- Git rebase did not include flag with pull command.
|
14
|
+
|
3
15
|
## [0.3.4] - 2025-03-06
|
4
16
|
|
5
17
|
### Fixed
|
@@ -290,11 +302,13 @@
|
|
290
302
|
|
291
303
|
- Changelog was created.
|
292
304
|
|
305
|
+
[0.3.5]: https://github.com/anpham6/squared/releases/tag/v0.3.5-ruby
|
293
306
|
[0.3.4]: https://github.com/anpham6/squared/releases/tag/v0.3.4-ruby
|
294
307
|
[0.3.3]: https://github.com/anpham6/squared/releases/tag/v0.3.3-ruby
|
295
308
|
[0.3.2]: https://github.com/anpham6/squared/releases/tag/v0.3.2-ruby
|
296
309
|
[0.3.1]: https://github.com/anpham6/squared/releases/tag/v0.3.1-ruby
|
297
310
|
[0.3.0]: https://github.com/anpham6/squared/releases/tag/v0.3.0-ruby
|
311
|
+
[0.2.6]: https://github.com/anpham6/squared/releases/tag/v0.2.6-ruby
|
298
312
|
[0.2.5]: https://github.com/anpham6/squared/releases/tag/v0.2.5-ruby
|
299
313
|
[0.2.4]: https://github.com/anpham6/squared/releases/tag/v0.2.4-ruby
|
300
314
|
[0.2.3]: https://github.com/anpham6/squared/releases/tag/v0.2.3-ruby
|
data/lib/squared/version.rb
CHANGED
@@ -565,7 +565,7 @@ module Squared
|
|
565
565
|
end
|
566
566
|
|
567
567
|
def pull(flag = nil, opts = [], sync: invoked_sync?('pull', flag), remote: nil)
|
568
|
-
cmd = git_session 'pull'
|
568
|
+
cmd = git_session 'pull', flag && "--#{flag}"
|
569
569
|
if (val = option('rebase', ignore: false))
|
570
570
|
cmd << case val
|
571
571
|
when '0'
|