Skip to content

Commit

Permalink
prepare release 1.0.2
Browse files Browse the repository at this point in the history
  • Loading branch information
godfat committed Dec 8, 2014
1 parent 80ede57 commit 955f6d9
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 5 deletions.
10 changes: 10 additions & 0 deletions CHANGES.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,15 @@
# CHANGES

## Pork 1.0.2 -- 2014-12-09

* Hash difference is much improved. Now it uses `/` to separate keys,
and use quotes for string keys and colons for symbol keys, so that
we won't be confused when comparing string hashes and symbol hashes.
Further more, it would show `<undefined>` for hashes missing a key,
and `<out-of-bound>` for arrays out of bound. Previously, hash with
nil values are indistinguishable with hash missing keys.
Thanks Chun-Yi Liu (@trantorliu).

## Pork 1.0.1 -- 2014-11-21

* Fixed the failure message for hash diff.
Expand Down
2 changes: 1 addition & 1 deletion lib/pork/version.rb
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@

module Pork
VERSION = '1.0.1'
VERSION = '1.0.2'
end
8 changes: 4 additions & 4 deletions pork.gemspec
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
# -*- encoding: utf-8 -*-
# stub: pork 1.0.1 ruby lib
# stub: pork 1.0.2 ruby lib

Gem::Specification.new do |s|
s.name = "pork"
s.version = "1.0.1"
s.version = "1.0.2"

s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
s.require_paths = ["lib"]
s.authors = ["Lin Jen-Shin (godfat)"]
s.date = "2014-11-21"
s.date = "2014-12-09"
s.description = "Pork -- Simple and clean and modular testing library.\n\nInspired by [Bacon][].\n\n[Bacon]: https://github.com/chneukirchen/bacon"
s.email = ["godfat (XD) godfat.org"]
s.files = [
Expand Down Expand Up @@ -50,7 +50,7 @@ Gem::Specification.new do |s|
"test/test_shuffle.rb"]
s.homepage = "https://github.com/godfat/pork"
s.licenses = ["Apache License 2.0"]
s.rubygems_version = "2.4.4"
s.rubygems_version = "2.4.5"
s.summary = "Pork -- Simple and clean and modular testing library."
s.test_files = [
"test/test_bacon.rb",
Expand Down

0 comments on commit 955f6d9

Please sign in to comment.