tarazed 0.2.4 → 0.2.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: 233b24e764e297bf6546e5c68452f4050f011b022c7300bdd0be3c7e36709069
4
- data.tar.gz: b188674da5a0ef96029c2a22a4b708bfc195ae4b7860fb13c117469ef2342600
3
+ metadata.gz: 239db90ea477884f4eadb45190f4ab471475aea19341781edadd3324282c57b7
4
+ data.tar.gz: 0516a4a738f05353a0165cafc2e7a6f25122844d1f3b93a9eaf0b58fd963a5d4
5
5
  SHA512:
6
- metadata.gz: 6f127d20234ebb1d5114afdf97c7b71c02826e55f734c9619cc03629651ebcbe6466c9b5677f2c45ec7f80dcea763b2d0b9f43513e22f37ed98b66ebbb260b60
7
- data.tar.gz: 1bca1ddcbe7456c40e82e9db0a1edd2328b8c8e8f11772196c0295907f71b1b96d696eaae5e3c513dbdce48b355a44d71fa8dd1e7766aeb5595718fbd61c9b59
6
+ metadata.gz: 5b3cbd7d5bfb263316054117e092fa04963021e74379ce61fec5a88230733714d7e91e34a533f5606b80f443267591d11c7b08b08ea66baf567f1100452ca99e
7
+ data.tar.gz: 70b84b619caacd1be2b1162cdc7e5c76cbc22b18af611643de938995c55d85030ff59b904627b2ddea2852f3dec77265c2ccd27ae14e0cc27e3ce9776fb875b5
data/CHANGELOG.md CHANGED
@@ -2,6 +2,10 @@
2
2
 
3
3
  ## Unreleased
4
4
 
5
+ ## 0.2.5 - 2026-09-19
6
+
7
+ - Keep open Windows ConPTY reads non-EOF while waiting for output.
8
+
5
9
  ## 0.2.4 - 2026-09-18
6
10
 
7
11
  - Add an API to clear completed and in-progress command history.
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Tarazed
4
- VERSION = "0.2.4"
4
+ VERSION = "0.2.5"
5
5
  end
@@ -97,7 +97,7 @@ module Tarazed
97
97
  end
98
98
  return nil if @pending.empty? && @eof
99
99
 
100
- @pending.slice!(0, limit)
100
+ @pending.slice!(0, limit) || +"".b
101
101
  end
102
102
 
103
103
  def pending? = !@pending.empty? || !@output.empty?
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: tarazed
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.2.4
4
+ version: 0.2.5
5
5
  platform: ruby
6
6
  authors:
7
7
  - Yudai Takada