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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: d145fb04de12033e30ded57091da96f9420dd32729fc59d2c362e8b99b9161d2
4
- data.tar.gz: 3bcbe852a45c17e9b4d543b9e2b99cbe255feca020cdc3339cb4fb5bb1b985d4
3
+ metadata.gz: 0bc9a21d89644d6af172db450fcd7e4221df93564e8a047791f47cb536d27abd
4
+ data.tar.gz: 3e2b746efc3797971655d80430135e2a599018e6c8037ebaab3d70200409e74b
5
5
  SHA512:
6
- metadata.gz: a50b05c95dbf4c14bfb5056c7978fff1d41129d2425dc9fd6248a5086d3e068ff3692d02dda8a5f07c7c4e5280d0feddfcb995867f9c22fd22e8e666e4e71771
7
- data.tar.gz: 8ce8ab2b30a2ce191cbbd2f411bab4a70bcd5a8d2d851e2cb1272af7cc34f7ecbf964505fc4b873cc556ba9c2c399c8b90dda62569c6b3f34a01b51ccc44a72b
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
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Squared
4
- VERSION = '0.3.4'
4
+ VERSION = '0.3.5'
5
5
  end
@@ -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'
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: squared
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.3.4
4
+ version: 0.3.5
5
5
  platform: ruby
6
6
  authors:
7
7
  - An Pham