Skip to content

Commit

Permalink
Merge pull request #63 from taylorfinnell/crystal-0.32.0
Browse files Browse the repository at this point in the history
Release 0.7.0
  • Loading branch information
taylorfinnell authored Dec 16, 2019
2 parents ea184d5 + 47c7a05 commit bf73766
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 4 deletions.
4 changes: 2 additions & 2 deletions shard.yml
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
name: awscr-s3
version: 0.6.0
version: 0.7.0

authors:
- Taylor Finnell <[email protected]>

crystal: 0.31.0
crystal: 0.32.0

license: MIT

Expand Down
10 changes: 9 additions & 1 deletion spec/awscr-s3/presigned/field_collection_spec.cr
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,16 @@ module Awscr

describe FieldCollection do
it "is enumerable" do
field = TestField.new("k", "v")
fields = FieldCollection.new
fields.should be_a(Enumerable(PostField))
fields.push(field)

collected = [] of PostField
fields.each do |f|
collected << f
end

collected.should eq([field])
end

it "can have fields added to it" do
Expand Down
2 changes: 1 addition & 1 deletion src/awscr-s3/version.cr
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module Awscr::S3
MAJOR = "0"
MINOR = "6"
MINOR = "7"
PATCH = "0"

# Current version of Awscr::S3.
Expand Down

0 comments on commit bf73766

Please sign in to comment.