From 12028a67946a57a5570bc19ca04286004db14e9c Mon Sep 17 00:00:00 2001 From: Alexandre Podlewski Date: Tue, 12 Dec 2023 16:36:56 +0100 Subject: [PATCH 1/4] Update Readme instruction about version update --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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). From e83ac93a495b36834646f98f2373425f62716da0 Mon Sep 17 00:00:00 2001 From: Alexandre Podlewski Date: Tue, 12 Dec 2023 16:37:10 +0100 Subject: [PATCH 2/4] Update version to 6.2.0 --- lib/ad_localize/version.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 From 9f5c030fafafb6db7a204a8e2d8734008f46b78b Mon Sep 17 00:00:00 2001 From: Alexandre Podlewski Date: Tue, 12 Dec 2023 16:51:51 +0100 Subject: [PATCH 3/4] Fix formatting in Changelog --- CHANGELOG.md | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index a720e66..1a326cb 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -16,12 +16,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 From c5d8c7a01d9a203eec73571684bcd127bdf792cc Mon Sep 17 00:00:00 2001 From: Alexandre Podlewski Date: Tue, 12 Dec 2023 16:50:20 +0100 Subject: [PATCH 4/4] Update changelog --- CHANGELOG.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 1a326cb..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.