From 9055d5d06a64251ee02ff0deb9ebfd79359e9b92 Mon Sep 17 00:00:00 2001 From: Gleb Mazovetskiy Date: Thu, 27 Feb 2014 08:22:33 +0100 Subject: [PATCH] v0.3.2 --- CHANGES.md | 4 ++++ README.md | 2 +- lib/i18n/tasks/version.rb | 2 +- 3 files changed, 6 insertions(+), 2 deletions(-) diff --git a/CHANGES.md b/CHANGES.md index 96097a7d..c14b1a02 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -1,3 +1,7 @@ +## v0.3.2 + +* Tasks that accept locales now accept them as the first argument(s) + ## v0.3.0 * i18n-tasks is a binary now (instead of rake tasks). All tasks / commands now accept various options, and there is no need for as many of them as before. diff --git a/README.md b/README.md index b0e647d1..c5136b12 100644 --- a/README.md +++ b/README.md @@ -66,7 +66,7 @@ Translate missing values with Google Translate ([more below on the API key](#tra ```bash i18n-tasks translate-missing # accepts from and locales options: -i18n-tasks translate-missing -f base -l es,fr +i18n-tasks translate-missing --from base es fr ``` Sort the keys and write them to their respective files with `normalize`. diff --git a/lib/i18n/tasks/version.rb b/lib/i18n/tasks/version.rb index c377c0e1..e114dd3d 100644 --- a/lib/i18n/tasks/version.rb +++ b/lib/i18n/tasks/version.rb @@ -1,5 +1,5 @@ module I18n module Tasks - VERSION = '0.3.1' + VERSION = '0.3.2' end end