diff --git a/CHANGELOG.md b/CHANGELOG.md index a720e66..1281e5b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## Unreleased +## [6.2.0] - 2023-12-12 + ### Added - new option `--skip-value-stripping` that disable the leading and trailing whitespaces removal on wording values. The value stripping was introduced with version 6.0.0. @@ -16,12 +18,14 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - Updated dependencies - Increase number of retries to 5 and timeout delay to 120s when accessing Google APIs. This reduces the amount of rate limit error when using private Google spreadsheet. -## 6.1.0 +## [6.1.0] - 2023-09-12 + ### Added - new option (iOS only) `--auto-escape-percent` that escapes % character in wording. This option should be used if the wording is intended to be used with `String(format:)`. -## 6.0.0 +## [6.0.0] - 2023-07-17 + ### Added - Remove extra spaces before and after key/translation contents diff --git a/README.md b/README.md index 5d8656d..bbf007a 100644 --- a/README.md +++ b/README.md @@ -292,7 +292,7 @@ Bug reports and pull requests are welcome on GitHub at https://github.com/applid 1. After all your changes are reviewed and merged 2. Create a `release` branch -3. Update the version in field `s.version` from file `ad_localize.gemspec` +3. Update the version in `lib/ad_localize/version.rb` 4. Execute `make publish` You may need to configure your account at step `4.` if you've never pushed any gem. You can find all the informations you need on [the official documentation](https://guides.rubygems.org/make-your-own-gem/#your-first-gem). diff --git a/lib/ad_localize/version.rb b/lib/ad_localize/version.rb index df04298..2531bdf 100644 --- a/lib/ad_localize/version.rb +++ b/lib/ad_localize/version.rb @@ -1,4 +1,4 @@ # frozen_string_literal: true module AdLocalize - VERSION = "6.1.0" + VERSION = "6.2.0" end