e-invoice-api 0.9.0 → 0.9.1
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 +8 -0
- data/README.md +1 -1
- data/lib/e_invoice_api/internal/util.rb +2 -3
- data/lib/e_invoice_api/version.rb +1 -1
- metadata +2 -2
    
        checksums.yaml
    CHANGED
    
    | @@ -1,7 +1,7 @@ | |
| 1 1 | 
             
            ---
         | 
| 2 2 | 
             
            SHA256:
         | 
| 3 | 
            -
              metadata.gz:  | 
| 4 | 
            -
              data.tar.gz:  | 
| 3 | 
            +
              metadata.gz: bbf3a27710cd345a0c0c13d486baecae18cdcbc2c174a03ebdb2c4b80bea41b2
         | 
| 4 | 
            +
              data.tar.gz: 43514f9dad9b42c2f82c952b405220b3546f0521b4697b5f891001af258fc16d
         | 
| 5 5 | 
             
            SHA512:
         | 
| 6 | 
            -
              metadata.gz:  | 
| 7 | 
            -
              data.tar.gz:  | 
| 6 | 
            +
              metadata.gz: d216d3e01878b30baa57f250e2710dcfae3c305cf6a39c3166877b48aead7efea0c1eef70651843887817ce75613e1c4a5a4d30549fade5c7b8a338be15a68b1
         | 
| 7 | 
            +
              data.tar.gz: ef616a0029858f98ecbc0217f3b3d0933d8e81a9a313b9cba1dcb55af968c47b02d4cdfddd7a2d7ad934dc953cb16b6a4d872fa7e27838a45813ef278800e644
         | 
    
        data/CHANGELOG.md
    CHANGED
    
    | @@ -1,5 +1,13 @@ | |
| 1 1 | 
             
            # Changelog
         | 
| 2 2 |  | 
| 3 | 
            +
            ## 0.9.1 (2025-10-15)
         | 
| 4 | 
            +
             | 
| 5 | 
            +
            Full Changelog: [v0.9.0...v0.9.1](https://github.com/e-invoice-be/e-invoice-rb/compare/v0.9.0...v0.9.1)
         | 
| 6 | 
            +
             | 
| 7 | 
            +
            ### Bug Fixes
         | 
| 8 | 
            +
             | 
| 9 | 
            +
            * should not reuse buffers for `IO.copy_stream` interop ([c7b6adb](https://github.com/e-invoice-be/e-invoice-rb/commit/c7b6adb0ee1e0d71d786215f580c95faa6ef2492))
         | 
| 10 | 
            +
             | 
| 3 11 | 
             
            ## 0.9.0 (2025-10-09)
         | 
| 4 12 |  | 
| 5 13 | 
             
            Full Changelog: [v0.8.0...v0.9.0](https://github.com/e-invoice-be/e-invoice-rb/compare/v0.8.0...v0.9.0)
         | 
    
        data/README.md
    CHANGED
    
    
| @@ -473,10 +473,9 @@ module EInvoiceAPI | |
| 473 473 | 
             
                    # @return [Enumerable<String>]
         | 
| 474 474 | 
             
                    def writable_enum(&blk)
         | 
| 475 475 | 
             
                      Enumerator.new do |y|
         | 
| 476 | 
            -
                        buf = String.new
         | 
| 477 476 | 
             
                        y.define_singleton_method(:write) do
         | 
| 478 | 
            -
                          self <<  | 
| 479 | 
            -
                           | 
| 477 | 
            +
                          self << _1.dup
         | 
| 478 | 
            +
                          _1.bytesize
         | 
| 480 479 | 
             
                        end
         | 
| 481 480 |  | 
| 482 481 | 
             
                        blk.call(y)
         | 
    
        metadata
    CHANGED
    
    | @@ -1,14 +1,14 @@ | |
| 1 1 | 
             
            --- !ruby/object:Gem::Specification
         | 
| 2 2 | 
             
            name: e-invoice-api
         | 
| 3 3 | 
             
            version: !ruby/object:Gem::Version
         | 
| 4 | 
            -
              version: 0.9. | 
| 4 | 
            +
              version: 0.9.1
         | 
| 5 5 | 
             
            platform: ruby
         | 
| 6 6 | 
             
            authors:
         | 
| 7 7 | 
             
            - e-invoice
         | 
| 8 8 | 
             
            autorequire:
         | 
| 9 9 | 
             
            bindir: bin
         | 
| 10 10 | 
             
            cert_chain: []
         | 
| 11 | 
            -
            date: 2025-10- | 
| 11 | 
            +
            date: 2025-10-15 00:00:00.000000000 Z
         | 
| 12 12 | 
             
            dependencies:
         | 
| 13 13 | 
             
            - !ruby/object:Gem::Dependency
         | 
| 14 14 | 
             
              name: connection_pool
         |