Skip to content

Commit

Permalink
Release 0.11.2
Browse files Browse the repository at this point in the history
Release 0.11.2 (August 14, 2017)

- Add full support for Czech language. [#148]
  • Loading branch information
jlduran committed Aug 14, 2017
1 parent 20a8ade commit 1ae5990
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 5 deletions.
6 changes: 5 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,11 @@
## 0.11.2 (Next)
## 0.11.3 (Next)

### Features
* Your contribution here.

## 0.11.2 (August 14, 2017)

### Features
* Add full support for Czech language. \[[#148](https://github.com/kslazarev/numbers_and_words/pull/148)\]

## 0.11.1 (July 23, 2017)
Expand Down
17 changes: 13 additions & 4 deletions numbers_and_words.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -2,16 +2,16 @@
# DO NOT EDIT THIS FILE DIRECTLY
# Instead, edit Jeweler::Tasks in Rakefile, and run 'rake gemspec'
# -*- encoding: utf-8 -*-
# stub: numbers_and_words 0.11.1 ruby lib
# stub: numbers_and_words 0.11.2 ruby lib

Gem::Specification.new do |s|
s.name = "numbers_and_words".freeze
s.version = "0.11.1"
s.version = "0.11.2"

s.required_rubygems_version = Gem::Requirement.new(">= 0".freeze) if s.respond_to? :required_rubygems_version=
s.require_paths = ["lib".freeze]
s.authors = ["Kirill Lazarev".freeze]
s.date = "2017-07-23"
s.date = "2017-08-14"
s.description = "Convert numbers to words using I18N.".freeze
s.email = "[email protected]".freeze
s.extra_rdoc_files = [
Expand Down Expand Up @@ -61,6 +61,7 @@ Gem::Specification.new do |s|
"lib/numbers_and_words/strategies/array_joiner.rb",
"lib/numbers_and_words/strategies/array_joiner/languages.rb",
"lib/numbers_and_words/strategies/array_joiner/languages/base.rb",
"lib/numbers_and_words/strategies/array_joiner/languages/cs.rb",
"lib/numbers_and_words/strategies/array_joiner/languages/en-GB.rb",
"lib/numbers_and_words/strategies/array_joiner/languages/en.rb",
"lib/numbers_and_words/strategies/array_joiner/languages/es.rb",
Expand All @@ -73,6 +74,10 @@ Gem::Specification.new do |s|
"lib/numbers_and_words/strategies/figures_converter.rb",
"lib/numbers_and_words/strategies/figures_converter/decorators.rb",
"lib/numbers_and_words/strategies/figures_converter/decorators/base.rb",
"lib/numbers_and_words/strategies/figures_converter/decorators/cs.rb",
"lib/numbers_and_words/strategies/figures_converter/decorators/cs/base.rb",
"lib/numbers_and_words/strategies/figures_converter/decorators/cs/fractional.rb",
"lib/numbers_and_words/strategies/figures_converter/decorators/cs/integral.rb",
"lib/numbers_and_words/strategies/figures_converter/decorators/en-GB.rb",
"lib/numbers_and_words/strategies/figures_converter/decorators/en-GB/base.rb",
"lib/numbers_and_words/strategies/figures_converter/decorators/en-GB/fractional.rb",
Expand Down Expand Up @@ -131,6 +136,10 @@ Gem::Specification.new do |s|
"lib/numbers_and_words/strategies/figures_converter/languages/tr.rb",
"lib/numbers_and_words/strategies/figures_converter/languages/ua.rb",
"lib/numbers_and_words/strategies/figures_converter/options.rb",
"lib/numbers_and_words/strategies/figures_converter/options/cs.rb",
"lib/numbers_and_words/strategies/figures_converter/options/cs/gender.rb",
"lib/numbers_and_words/strategies/figures_converter/options/cs/ordinal.rb",
"lib/numbers_and_words/strategies/figures_converter/options/cs/remove_zero.rb",
"lib/numbers_and_words/strategies/figures_converter/options/en-GB.rb",
"lib/numbers_and_words/strategies/figures_converter/options/en-GB/hundreds_with_union.rb",
"lib/numbers_and_words/strategies/figures_converter/options/en-GB/ordinal.rb",
Expand Down Expand Up @@ -159,6 +168,7 @@ Gem::Specification.new do |s|
"lib/numbers_and_words/strategies/figures_converter/options/ua/gender.rb",
"lib/numbers_and_words/translations.rb",
"lib/numbers_and_words/translations/base.rb",
"lib/numbers_and_words/translations/cs.rb",
"lib/numbers_and_words/translations/de.rb",
"lib/numbers_and_words/translations/en-GB.rb",
"lib/numbers_and_words/translations/en.rb",
Expand All @@ -168,7 +178,6 @@ Gem::Specification.new do |s|
"lib/numbers_and_words/translations/families/base.rb",
"lib/numbers_and_words/translations/families/cyrillic.rb",
"lib/numbers_and_words/translations/families/latin.rb",
"lib/numbers_and_words/translations/cs.rb",
"lib/numbers_and_words/translations/fr.rb",
"lib/numbers_and_words/translations/hu.rb",
"lib/numbers_and_words/translations/it.rb",
Expand Down

0 comments on commit 1ae5990

Please sign in to comment.