Skip to content

Commit

Permalink
Release 0.5.14 (new dependency: storable)
Browse files Browse the repository at this point in the history
  • Loading branch information
delano committed Mar 23, 2010
1 parent c470795 commit a5be5d1
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 5 deletions.
11 changes: 9 additions & 2 deletions CHANGES.txt
@@ -1,10 +1,17 @@
BENELUX, CHANGES

#### 0.5.13 (2010-03-??) ##############################

#### 0.5.14 (2010-03-23) ##############################

New dependency: storable >= 0.6.5

* CHANGE: Stats::Calculator now uses Storable

#### 0.5.13 (2010-03-20) ##############################

* FIXED: Benelux::Stats::Calculator#merge! checks @n instead of @sum
* CHANGE: Don't merge when the other Calculator has 0 samples.
* CHANGE: Stats::Calculator now uses Storable


#### 0.5.12 (2010-03-19) ##############################

Expand Down
4 changes: 2 additions & 2 deletions benelux.gemspec
@@ -1,7 +1,7 @@
@spec = Gem::Specification.new do |s|
s.name = "benelux"
s.rubyforge_project = 'benelux'
s.version = "0.5.13"
s.version = "0.5.14"
s.summary = "Benelux: A mad way to time Ruby codes"
s.description = s.summary
s.author = "Delano Mandelbaum"
Expand All @@ -13,7 +13,7 @@
s.rdoc_options = ["--line-numbers", "--title", s.summary, "--main", "README.rdoc"]
s.require_paths = %w[lib]

s.add_dependency("storable", [">= 0.6.4"])
s.add_dependency("storable", [">= 0.6.5"])

# = MANIFEST =
# git ls-files
Expand Down
2 changes: 1 addition & 1 deletion lib/benelux.rb
Expand Up @@ -4,7 +4,7 @@
require 'selectable'

module Benelux
VERSION = "0.5.13"
VERSION = "0.5.14"
NOTSUPPORTED = [Class, Object, Kernel]

class BeneluxError < RuntimeError; end
Expand Down

0 comments on commit a5be5d1

Please sign in to comment.