File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 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
Original file line number Diff line number Diff line change 11#!/bin/env ruby
2- # encoding: utf-8
2+ # frozen_string_literal: true
3+
34Gem ::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
Original file line number Diff line number Diff line change 1+ # frozen_string_literal: true
2+
3+ class EuCentralBank < Money ::Bank ::VariableExchange
4+ VERSION = "2.0.0"
5+ end
You can’t perform that action at this time.
0 commit comments