worldwide 0.6.3 → 0.6.4

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: e612eada41704a41e5aa1b7dfce0cb4d94d81c9a8022c6392e45e57ee3f4aa62
4
- data.tar.gz: 7ff48a7f2d370b615d07c8410f62bb1464ea64be2cbd8da7e7a17a443846f1bb
3
+ metadata.gz: a210cd5e40ae766fc5b325333b835f22ff3bd62072b87a5c4d2ce75a19f514b0
4
+ data.tar.gz: c143a2c967c98331e92331a83fee13c7097d8977753a35369b515866c92e33b4
5
5
  SHA512:
6
- metadata.gz: 72e2d6a9985fe09d8ed9fa5179e1525e56cd24c2603e8f4317f0ce6fe15a0cc1692738042defdc8be28fa3667e54b65b8a0e58995660e025fcfeefe4850f3bfb
7
- data.tar.gz: e4696a9bec42809f27a803a1d39a8413eec5656666133602644faeb292fb9a0fcebf1fc64c6fd9cf8f9bd84d9b2073f34120cfcc98d6c3631b71f13d6a60fef9
6
+ metadata.gz: f7714da78c95086ea3577b07154a73f361e3471b342aff2e104c61f76f0f960ccbf2a2d9af2ed0fdf9277bee25b5df4c157f17eb17523bb52fc182f3b58e2f7f
7
+ data.tar.gz: acb261241478d869703088715496649e4d195924d5f2cfe03b2da40dafeda8f1006fdbcba0adb29982241bbc060e74750b046229a31912d2ebef248771b59139
data/.ruby-version ADDED
@@ -0,0 +1 @@
1
+ 3.2.2
data/CHANGELOG.md CHANGED
@@ -27,10 +27,13 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
27
27
 
28
28
  ## [Unreleased]
29
29
 
30
- - nil
31
-
32
30
  ---
33
31
 
32
+ [0.6.4] - 2024-01-22
33
+
34
+ - Allow building number in address2 for BE [#70](https://github.com/Shopify/worldwide/pull/70)
35
+ - Update Singapore GST in preparation for January 1 2024 increase [#68](https://github.com/Shopify/worldwide/pull/68)
36
+
34
37
  [0.6.3] - 2023-12-11
35
38
 
36
39
  - Change HM, TF and GS `group_name` to respective continents based on M49. [#60](https://github.com/Shopify/worldwide/pull/60)
data/Gemfile.lock CHANGED
@@ -13,7 +13,7 @@ GIT
13
13
  PATH
14
14
  remote: .
15
15
  specs:
16
- worldwide (0.6.3)
16
+ worldwide (0.6.4)
17
17
  activesupport (~> 7.0)
18
18
  i18n (~> 1.12.0)
19
19
  phonelib (~> 0.8)
@@ -14,6 +14,7 @@ tags:
14
14
  - EU-member
15
15
  phone_number_prefix: 32
16
16
  building_number_required: true
17
+ building_number_may_be_in_address2: true
17
18
  week_start_day: monday
18
19
  languages:
19
20
  - de
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  name: Singapore
3
3
  code: SG
4
- tax: 0.08
4
+ tax: 0.09
5
5
  currency: SGD
6
6
  unit_system: metric
7
7
  tax_name: GST
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Worldwide
4
- VERSION = "0.6.3"
4
+ VERSION = "0.6.4"
5
5
  end
data/translation.yml ADDED
@@ -0,0 +1,11 @@
1
+ source_language: en
2
+ target_languages: [bg-BG, cs, da, de, el, es, fi, fr, hi, hr-HR, hu, id, it, ja, ko, lt-LT, ms, nb, nl, pl, pt-BR, pt-PT, ro-RO, ru, sk-SK, sl-SI, sv, th, tr, vi, zh-CN, zh-TW]
3
+ async_pr_mode: per_pr
4
+ components:
5
+ - name: 'buyer'
6
+ audience: buyer
7
+ paths:
8
+ - db/data/regions/*/{{language}}.yml
9
+ - data/other/hand_translated/{{language}}.yml
10
+ - data/other/names/{{language}}.yml
11
+ - data/other/timezones/{{language}}.yml
data/worldwide.gemspec CHANGED
@@ -15,6 +15,7 @@ Gem::Specification.new do |spec|
15
15
  spec.homepage = "https://github.com/Shopify/worldwide"
16
16
 
17
17
  spec.metadata["allowed_push_host"] = "https://rubygems.org/"
18
+ spec.metadata["changelog_uri"] = "https://github.com/Shopify/worldwide/blob/main/CHANGELOG.md"
18
19
 
19
20
  spec.files = %x(git ls-files -z).split("\x0").reject do |f|
20
21
  f.match(%r{^(rake|test|spec|features)/})
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: worldwide
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.6.3
4
+ version: 0.6.4
5
5
  platform: ruby
6
6
  authors:
7
7
  - Shopify
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2023-12-11 00:00:00.000000000 Z
11
+ date: 2024-01-23 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: activesupport
@@ -67,6 +67,7 @@ files:
67
67
  - ".github/workflows/cla.yml"
68
68
  - ".gitignore"
69
69
  - ".rubocop.yml"
70
+ - ".ruby-version"
70
71
  - CHANGELOG.md
71
72
  - Gemfile
72
73
  - Gemfile.lock
@@ -8208,11 +8209,13 @@ files:
8208
8209
  - lib/worldwide/util.rb
8209
8210
  - lib/worldwide/version.rb
8210
8211
  - lib/worldwide/zip.rb
8212
+ - translation.yml
8211
8213
  - worldwide.gemspec
8212
8214
  homepage: https://github.com/Shopify/worldwide
8213
8215
  licenses: []
8214
8216
  metadata:
8215
8217
  allowed_push_host: https://rubygems.org/
8218
+ changelog_uri: https://github.com/Shopify/worldwide/blob/main/CHANGELOG.md
8216
8219
  post_install_message:
8217
8220
  rdoc_options: []
8218
8221
  require_paths:
@@ -8228,7 +8231,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
8228
8231
  - !ruby/object:Gem::Version
8229
8232
  version: '0'
8230
8233
  requirements: []
8231
- rubygems_version: 3.4.22
8234
+ rubygems_version: 3.5.4
8232
8235
  signing_key:
8233
8236
  specification_version: 4
8234
8237
  summary: Internationalization and localization APIs