From 4378481ed51512aadef3706cbc36887e1e795fe9 Mon Sep 17 00:00:00 2001 From: Gleb Mazovetskiy Date: Tue, 22 Mar 2022 22:17:07 +0000 Subject: [PATCH] Bump to v1.0.0 --- CHANGES.md | 1 + README.md | 4 ++-- lib/i18n/tasks/version.rb | 2 +- 3 files changed, 4 insertions(+), 3 deletions(-) diff --git a/CHANGES.md b/CHANGES.md index 2be26801..4d8e1e2b 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -1,5 +1,6 @@ ## v1.0.0 +* Log [#StandWithUkraine](https://stand-with-ukraine.pp.ua/) to stderr on every CLI command. * Improved ERB parsing: Replaces a regexp-based parser with an AST parser. [#416](https://github.com/glebm/i18n-tasks/pull/416) * Fixes compatibility with Psych 4.0+ and Ruby 3.1. diff --git a/README.md b/README.md index ee9ab690..6e68fab5 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,6 @@ # i18n-tasks [![Build Status][badge-ci]][ci] [![Coverage Status][badge-coverage]][coverage] [![Gitter](https://badges.gitter.im/Join%20Chat.svg)](https://gitter.im/glebm/i18n-tasks?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge) -[![Stand With Ukraine](https://raw.githubusercontent.com/vshymanskyy/StandWithUkraine/main/banner2-direct.svg)](https://vshymanskyy.github.io/StandWithUkraine) +[![Stand With Ukraine](https://raw.githubusercontent.com/vshymanskyy/StandWithUkraine/main/banner2-direct.svg)](https://stand-with-ukraine.pp.ua/) i18n-tasks helps you find and manage missing and unused translations. @@ -24,7 +24,7 @@ i18n-tasks can be used with any project using the ruby [i18n gem][i18n-gem] (def Add i18n-tasks to the Gemfile: ```ruby -gem 'i18n-tasks', '~> 0.9.37' +gem 'i18n-tasks', '~> 1.0.0' ``` Copy the default [configuration file](#configuration): diff --git a/lib/i18n/tasks/version.rb b/lib/i18n/tasks/version.rb index 16759c3c..beb06f44 100644 --- a/lib/i18n/tasks/version.rb +++ b/lib/i18n/tasks/version.rb @@ -2,6 +2,6 @@ module I18n module Tasks - VERSION = '0.9.37' + VERSION = '1.0.0' end end