Skip to content

Commit 148596d

Browse files
committed
v2.0.0 🎉
Closes #128
1 parent 28e4f40 commit 148596d

3 files changed

Lines changed: 13 additions & 3 deletions

File tree

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,11 @@
22

33
## Upcoming release (unreleased)
44

5+
## 2.0.0 (Dec 9 2025)
6+
57
* **Breaking change**: Require Ruby >= 3.1
8+
* **Breaking change**: Update Money dependency to 7.0. Make sure to read [the upgrade
9+
guide](https://github.com/RubyMoney/money/blob/main/UPGRADING-7.0.md).
610
* Update YAML loading from compatibility with recent Psych versions.
711
* Move Croatian Kuna (HRK) and Russian Ruble (RUB) to legacy currencies
812

eu_central_bank.gemspec

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,9 @@
11
#!/bin/env ruby
2-
# encoding: utf-8
2+
# frozen_string_literal: true
3+
34
Gem::Specification.new do |s|
45
s.name = "eu_central_bank"
5-
s.version = "1.7.0"
6+
s.version = "2.0.0"
67
s.platform = Gem::Platform::RUBY
78
s.authors = ["Shane Emmons"]
89
s.email = ["shane@emmons.io"]
@@ -19,7 +20,7 @@ Gem::Specification.new do |s|
1920

2021
s.add_dependency "bigdecimal"
2122
s.add_dependency "nokogiri", "~> 1.11"
22-
s.add_dependency "money", "~> 6.19"
23+
s.add_dependency "money", "~> 7.0"
2324

2425
s.add_development_dependency "rspec", "~> 3.13"
2526

lib/eu_central_bank/version.rb

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
# frozen_string_literal: true
2+
3+
class EuCentralBank < Money::Bank::VariableExchange
4+
VERSION = "2.0.0"
5+
end

0 commit comments

Comments
 (0)