eu_vat_rates_data 2026.4.25 → 2026.4.27

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 4a78e759d9010a4a2df6e469722276b0cdb7f2034d6dd0a6d789c949f8ce1004
4
- data.tar.gz: 3eb1ad15e85789d41d68119be0cac5c6091081da03f184e01e507d864763336a
3
+ metadata.gz: '022784fce9471e576c8564b8b7cf987cc83eb565ac2384cbd15127a1c55cf81b'
4
+ data.tar.gz: 0cf098d5d42df63a3b45a9f526be72ab2b953e35b8a45d8798758c8864ba95d9
5
5
  SHA512:
6
- metadata.gz: a670b237d1ac0f59baf034c76e25b199f9d6975d5a527803ad5ce11b0ab30e3a73c58057e35786c6b764b41c4360f441b57509708da71a749f4e03f74d1bffbc
7
- data.tar.gz: d43e628acfedd3481738556e4d03c923e4f77643aca0ebe6e9bfe7a5345658704213835983d32bd6aae6b1544117e4bf9bbd0899a11a7df92deaa57265c5fa4d
6
+ metadata.gz: d01db389f4c448f023f46daa2b936f04b9ac70c2eebb005993e22a63e6848f33a78f416bd7ea7309d2f21852e9edebaecc4dbc6f740c8957f71197b641ff716e
7
+ data.tar.gz: ca7ff145ac941d82159c0c01d81f34e58abed6e3593cfffbf009a92921364110daf8c3770c00726071e6c0172a4de6df4bcfef4d5404ef24b2d4f1c6d32d3ed2
data/README.md CHANGED
@@ -4,7 +4,7 @@
4
4
  [![Last updated](https://img.shields.io/github/last-commit/vatnode/eu-vat-rates-data-ruby?path=data%2Feu-vat-rates-data.json&label=last%20updated)](https://github.com/vatnode/eu-vat-rates-data-ruby/commits/main)
5
5
  [![License: MIT](https://img.shields.io/badge/License-MIT-blue.svg)](LICENSE)
6
6
 
7
- VAT rates for **44 European countries** — EU-27 plus Norway, Switzerland, UK, and more. EU rates sourced from the European Commission TEDB and checked daily. Non-EU rates maintained manually.
7
+ VAT rates for **45 European countries** — EU-27 plus Norway, Switzerland, UK, and more. EU rates sourced from the European Commission TEDB and checked daily. Non-EU rates maintained manually.
8
8
 
9
9
  - Standard, reduced, super-reduced, and parking rates
10
10
  - `eu_member` flag on every country — `true` for EU-27, `false` for non-EU
@@ -57,12 +57,12 @@ if EuVatRatesData.eu_member?(user_input)
57
57
  rate = EuVatRatesData.get_rate(user_input)
58
58
  end
59
59
 
60
- # Dataset membership check (all 44 countries)
60
+ # Dataset membership check (all 45 countries)
61
61
  if EuVatRatesData.has_rate?(user_input)
62
62
  rate = EuVatRatesData.get_rate(user_input)
63
63
  end
64
64
 
65
- # All 44 countries at once
65
+ # All 45 countries at once
66
66
  EuVatRatesData.all_rates.each do |code, rate|
67
67
  puts "#{code}: #{rate['standard']}%"
68
68
  end
@@ -1,3 +1,3 @@
1
1
  module EuVatRatesData
2
- VERSION = "2026.4.25"
2
+ VERSION = "2026.4.27"
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: eu_vat_rates_data
3
3
  version: !ruby/object:Gem::Version
4
- version: 2026.4.25
4
+ version: 2026.4.27
5
5
  platform: ruby
6
6
  authors:
7
7
  - Iurii Rogulia
@@ -10,7 +10,7 @@ bindir: bin
10
10
  cert_chain: []
11
11
  date: 2026-04-25 00:00:00.000000000 Z
12
12
  dependencies: []
13
- description: VAT rates (standard, reduced, super-reduced, parking) for 44 European
13
+ description: VAT rates (standard, reduced, super-reduced, parking) for 45 European
14
14
  countries — EU-27 plus Norway, Switzerland, UK, and more. Includes eu_member flag,
15
15
  local VAT name and abbreviation. Useful for billing, invoicing, e-commerce, fintech,
16
16
  and VAT compliance.
@@ -50,6 +50,6 @@ requirements: []
50
50
  rubygems_version: 3.5.22
51
51
  signing_key:
52
52
  specification_version: 4
53
- summary: VAT rates for 44 European countries — EU-27 plus Norway, Switzerland, UK,
53
+ summary: VAT rates for 45 European countries — EU-27 plus Norway, Switzerland, UK,
54
54
  and more.
55
55
  test_files: []