Skip to content

Commit

Permalink
Merge pull request #58 from webhippie/upgrade
Browse files Browse the repository at this point in the history
feat: prepare breaking change for 2.0.0 release
  • Loading branch information
tboerger authored Jul 20, 2023
2 parents 59bbd2b + a282adf commit 4f91650
Show file tree
Hide file tree
Showing 5 changed files with 11 additions and 7 deletions.
6 changes: 5 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,10 @@
# Changelog

## [1.4.0](https://github.com/webhippie/gettext_i18n_rails_js/releases/tag/v1.4.0) - 2024-05-01
## [2.0.0](https://github.com/webhippie/gettext_i18n_rails_js/releases/tag/v2.0.0) - 2023-07-20

* Upgrade to latest po_to_json which fixes double quotes within msgid (@tboerger)

## [1.4.0](https://github.com/webhippie/gettext_i18n_rails_js/releases/tag/v1.4.0) - 2023-05-01

* Added support for doing conversion for different domains and rails engines (@adamruzicka)

Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ look at the [wokflow][workflow].
## Installation

```ruby
gem "gettext_i18n_rails_js", "~> 1.2"
gem "gettext_i18n_rails_js", "~> 2.0"
```

## Versioning
Expand All @@ -34,7 +34,7 @@ gem using the [Pessimistic Version Constraint][pvc] with two digits of precision
For example:

```ruby
spec.add_dependency "gettext_i18n_rails_js", "~> 1.2"
spec.add_dependency "gettext_i18n_rails_js", "~> 2.0"
```

## Usage
Expand Down
2 changes: 1 addition & 1 deletion gettext_i18n_rails_js.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -67,6 +67,6 @@ Gem::Specification.new do |s|

s.add_dependency "gettext", ">= 3.0.2"
s.add_dependency "gettext_i18n_rails", ">= 0.7.1"
s.add_dependency "po_to_json", ">= 1.0.0"
s.add_dependency "po_to_json", ">= 2.0.0"
s.add_dependency "rails", ">= 3.2.0"
end
2 changes: 1 addition & 1 deletion lib/gettext_i18n_rails_js.rb
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
gem "rails", version: ">= 3.2.0"
gem "gettext", version: ">= 3.0.2"
gem "gettext_i18n_rails", version: ">= 0.7.1"
gem "po_to_json", version: ">= 0.1.0"
gem "po_to_json", version: ">= 2.0.0"

require "rails"
require "gettext"
Expand Down
4 changes: 2 additions & 2 deletions lib/gettext_i18n_rails_js/version.rb
Original file line number Diff line number Diff line change
Expand Up @@ -26,8 +26,8 @@

module GettextI18nRailsJs
class Version
MAJOR = 1
MINOR = 4
MAJOR = 2
MINOR = 0
PATCH = 0

PRE = nil
Expand Down

0 comments on commit 4f91650

Please sign in to comment.