From 0f09242afbcf66ab1e577b51d955bdb0379f9bcb Mon Sep 17 00:00:00 2001 From: Zamith Date: Fri, 6 May 2016 15:23:13 +0100 Subject: [PATCH] Bumps M version to 1.5.0 --- Gemfile.lock | 5 ++++- README.md | 4 ++-- lib/version.rb | 2 +- 3 files changed, 7 insertions(+), 4 deletions(-) diff --git a/Gemfile.lock b/Gemfile.lock index 0523bd4..11ac297 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -1,7 +1,7 @@ PATH remote: . specs: - m (1.4.2) + m (1.5.0) method_source (>= 0.6.7) rake (>= 0.9.2.2) @@ -81,3 +81,6 @@ DEPENDENCIES m! rdiscount rocco + +BUNDLED WITH + 1.11.2 diff --git a/README.md b/README.md index ec02b64..9159471 100644 --- a/README.md +++ b/README.md @@ -36,7 +36,7 @@ If you’re using Bundler, you’ll need to include it in your Gemfile. Toss it ``` ruby group :test do - gem 'm', '~> 1.4.2' + gem 'm', '~> 1.5.0' end ``` @@ -46,7 +46,7 @@ Developing a RubyGem? Add m as a development dependency. ``` ruby Gem::Specification.new do |gem| # ... - gem.add_development_dependency "m", "~> 1.4.2" + gem.add_development_dependency "m", "~> 1.5.0" end ``` diff --git a/lib/version.rb b/lib/version.rb index b1f4872..bc85a3a 100644 --- a/lib/version.rb +++ b/lib/version.rb @@ -1,3 +1,3 @@ module M - VERSION = "1.4.2" + VERSION = "1.5.0" end