Skip to content

Commit

Permalink
append -> push, bump version
Browse files Browse the repository at this point in the history
  • Loading branch information
Firobe committed Apr 7, 2022
1 parent 94f1112 commit 8978b96
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 3 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,10 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [0.11.6] - 2022-04-08
### Fixed
* use Array#push instead of #append for better compatibility

## [0.11.5] - 2022-04-07
### Changed
* packages are uploaded "atomically": transferred as temporary files, then
Expand Down
2 changes: 1 addition & 1 deletion Gemfile.lock
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
PATH
remote: .
specs:
deb-s3 (0.11.4)
deb-s3 (0.11.6)
aws-sdk-s3 (~> 1)
thor (~> 0.19.0)

Expand Down
2 changes: 1 addition & 1 deletion lib/deb/s3.rb
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# -*- encoding : utf-8 -*-
module Deb
module S3
VERSION = "0.11.5"
VERSION = "0.11.6"
end
end
2 changes: 1 addition & 1 deletion lib/deb/s3/cli.rb
Original file line number Diff line number Diff line change
Expand Up @@ -248,7 +248,7 @@ def upload(*files)
log_action = lambda {|f| sublog("Transferring #{f}") }
atomic_action = lambda {|f|
log_action.call(f)
filenames_to_move.append(f)
filenames_to_move.push(f)
}

# upload the manifest
Expand Down

0 comments on commit 8978b96

Please sign in to comment.