From 6a6e4cf95963741aab13f8dcdca3bbeab99a4b07 Mon Sep 17 00:00:00 2001 From: Matheus Richard Date: Thu, 9 Sep 2021 23:37:59 -0300 Subject: [PATCH] v0.3.0 --- CHANGELOG.md | 10 +++++++--- lib/benchable/version.rb | 2 +- 2 files changed, 8 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index ded5156..52cc334 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,6 +6,9 @@ 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). ## [Unreleased] +--- + +## [0.3.0] - 2021-09-09 ### Added @@ -31,7 +34,7 @@ end ### Changed -- Require >= Ruby 2.6 +- Require >= Ruby 2.6. --- @@ -49,6 +52,7 @@ end ### Added - Support for `Benchmark.bm`, `Benchmark.bmbm` and `Benchmark.ips`. -[unreleased]: https://github.com/MatheusRich/benchable/compare/v0.2.0...HEAD +[unreleased]: https://github.com/MatheusRich/benchable/compare/v0.3.0...HEAD [0.1.0]: https://github.com/MatheusRich/benchable/releases/tag/v0.1.0 -[0.2.0]: https://github.com/MatheusRich/benchable/releases/tag/v0.2.0 \ No newline at end of file +[0.2.0]: https://github.com/MatheusRich/benchable/releases/tag/v0.2.0 +[0.3.0]: https://github.com/MatheusRich/benchable/releases/tag/v0.3.0 \ No newline at end of file diff --git a/lib/benchable/version.rb b/lib/benchable/version.rb index 0e63aed..69a27cf 100644 --- a/lib/benchable/version.rb +++ b/lib/benchable/version.rb @@ -1,5 +1,5 @@ # frozen_string_literal: true module Benchable - VERSION = "0.2.0" + VERSION = "0.3.0" end