benchmark-memory 0.1.1 → 0.1.2

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 1a1f338bae81b958bbf8cfa3560476d751ae715d
4
- data.tar.gz: f57b9cda5e925e38e470f4b56ba85e06ad5efc0b
3
+ metadata.gz: ce1d2f5bdcc1fbcd47258b0baa40270454220de4
4
+ data.tar.gz: 624cd04313af120944dcbe193dcace591a980a17
5
5
  SHA512:
6
- metadata.gz: fbccceb24005e9844eb805ef24776c23b16a993626c4b7493cc4707be5b09533feb2bae143c78a38b4025bbc1f949decb9f72a82a2dafc4349e896882318a284
7
- data.tar.gz: 3a8f8cbac8b3c5e08229f5ec727437b7f62bba9112b2fef67e52aae128ad3a544641451ae7d7bf371268ecabde8c95cba18dbd2552ac2d02831f5dd5f016c7fc
6
+ metadata.gz: 07cae3b39fdaac96b4f9601288cc5972db7bb8cd14a3a71d3c55d300c22e7a850db993efae450727b27a73fe29ab2e6a3b6a3dece852adb783bee25ced15c023
7
+ data.tar.gz: 33c02f69a9a8cca90bd528445447cce532cf93d188acc43fdd5abf3fac6cb4746c1788f35d035893f4fbd033ff652ec780195b4fc77b31c9e069d454e577afc7
@@ -4,6 +4,12 @@ All notable changes to this project will be documented in this file. This projec
4
4
 
5
5
  [semver]: http://semver.org/spec/v2.0.0.html
6
6
 
7
+ ## [0.1.2] - 2017-01-30
8
+
9
+ ### Fixed
10
+
11
+ - [#4](https://github.com/michaelherold/benchmark-memory/pull/4): Fix a small bug when StringIO wasn't properly required - [@rzane](https://github.com/rzane).
12
+
7
13
  ## [0.1.1] - 2016-06-10
8
14
 
9
15
  ### Fixed
@@ -18,6 +24,6 @@ All notable changes to this project will be documented in this file. This projec
18
24
  - Holding results between invocations for measuring implementations on different versions of Ruby or different versions of libraries.
19
25
  - Quiet mode, with no command line output.
20
26
 
27
+ [0.1.2]: https://github.com/michaelherold/benchmark-memory/compare/v0.1.1...v0.1.2
21
28
  [0.1.1]: https://github.com/michaelherold/benchmark-memory/compare/v0.1.0...v0.1.1
22
29
  [0.1.0]: https://github.com/michaelherold/benchmark-memory/tree/v0.1.0
23
- [unreleased]: https://github.com/michaelherold/benchmark-memory/compare/v0.1.1...HEAD
@@ -1,3 +1,4 @@
1
+ require "stringio"
1
2
  require "benchmark/memory/helpers"
2
3
  require "benchmark/memory/job/io_output/metric_formatter"
3
4
 
@@ -1,5 +1,5 @@
1
1
  module Benchmark
2
2
  module Memory
3
- VERSION = "0.1.1".freeze
3
+ VERSION = "0.1.2".freeze
4
4
  end
5
5
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: benchmark-memory
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.1
4
+ version: 0.1.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Michael Herold
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2016-06-10 00:00:00.000000000 Z
11
+ date: 2017-01-31 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: memory_profiler
@@ -93,7 +93,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
93
93
  version: '0'
94
94
  requirements: []
95
95
  rubyforge_project:
96
- rubygems_version: 2.5.1
96
+ rubygems_version: 2.6.7
97
97
  signing_key:
98
98
  specification_version: 4
99
99
  summary: Benchmark-style memory profiling for Ruby 2.1+