From bb5392b3611c0f007de9d78dbcdd98df6f2d3069 Mon Sep 17 00:00:00 2001 From: Gleb Mazovetskiy Date: Tue, 31 Mar 2015 20:08:38 +0100 Subject: [PATCH] bump to 0.8.0 --- CHANGES.md | 2 +- README.md | 2 +- lib/i18n/tasks/version.rb | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/CHANGES.md b/CHANGES.md index a2de1f76..1ac58444 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -1,4 +1,4 @@ -## 0.8.0 (unreleased) +## 0.8.0 * Parse command line arguments with `optparse`. Remove dependency on Slop. Simplified commands DSL: options are mostly passed directly to optparse. diff --git a/README.md b/README.md index ba0cd90e..38afaf31 100644 --- a/README.md +++ b/README.md @@ -22,7 +22,7 @@ i18n-tasks can be used with any project using the ruby [i18n gem][i18n-gem] (def Add it to the Gemfile: ```ruby -gem 'i18n-tasks', '~> 0.7.13' +gem 'i18n-tasks', '~> 0.8.0' ``` Copy default [configuration file](#configuration) (optional): diff --git a/lib/i18n/tasks/version.rb b/lib/i18n/tasks/version.rb index 6941ec7a..0c310029 100644 --- a/lib/i18n/tasks/version.rb +++ b/lib/i18n/tasks/version.rb @@ -1,6 +1,6 @@ # coding: utf-8 module I18n module Tasks - VERSION = '0.7.13' + VERSION = '0.8.0' end end