- Potential breaking change: Fix USDC decimals places from 2 to 6
- Fix typo in ILS currency
- Change Peruvian Sol (PEN) decimal mark and thousands separator.
- Fix deprecation warning for BigDecimal being moved out from stdlib.
- Improves Precision and Simplifies Allocation Logic
- explicit declaration of i18n locales
- Add space to CHF format
- Update deprecation message to suggest correct formatting.
- Add second dobra (STN) from São Tomé and Príncipe
- Add Sierra Leonean (new) leone (SLE) from Sierra Leone
- Correct South African Rand (ZAR) to use comma decimal mark, and space thousands separator
- Use euro symbol as html_entity for euro currency
- Update Georgian Lari symbol
- Add Ruby 3.1 and 3.2 to the CI matrix
- Add
Money.from_dollars
alias as a more explicit initializer, it's the same asMoney.from_amount
- Mark Croatian Kuna (HRK) as obsolete by moving its definition to the backwards compatibility data source
- Allow true for
thousands_separator
- Add
Money.from_cents
alias as a more explicit initializer, it's the same asMoney.new
- Add :delimiter_pattern option to the Formatter
- Fix CHF format regression introduced in v6.14.0
- Fix deprecation warning in #format_decimal_part
- Fix Bahraini dinar symbol
- Raise exception when default currency is not set or passed as parameter
- Allow specifying default_bank as a lambda
- Allow passing a default format in currencies definition only valid without symbol_position
- Always allow comparison with zero Money
- Rename Money.infinite_precision to default_infinite_precision
- Add Currency.reset! method to reload all the default currency definitions
- Fix edgecase for Money#allocate when applying to array of all zero values
- Update symbol for XOF
- Update UYU currency symbol
- Allow double conversion using same bank
- Warn when using unsafe serializer for rate import
- Move Icelandic symbol after the amount
- Improve deprecation warnings for the upcoming major release
- Fix a regression introduced in 6.13.5 that broken RatesStore::Memory subclasses
- Raise warning on using Money.default_currency
- Raise warning on using default Money.rounding_mode
- Add Second Ouguiya MRU 929 to currency iso file
- Add symbol for UZS
- Use monitor for recursive mutual exclusion in RatesStore::Memory
- Allow passing store as a string to Money::Bank::VariableExchange (to support Rails 6)
- Update currency config for Zambian Kwacha (ZMW)
- Do not modify options passed to FormattingRules
- Remove specs from the packaged gem
- Use Currency::Loader directly without extending
- Add Money.with_rounding_mode as a replacement for calling Money.rounding_mode with a block
- Fix currency search for two digit ISO numbers
- Add description to TypeError raised by +/- operations
- Prevent Money initialization with non-finite amounts
- Convert the fractional value of a Money object to BigDecimal when initializing
- Offer replacements for currency position deprecations
- Fix Peruvian Sol symbol
- Lock i18n to <= 1.2.0 for older (< 2.3) rubies
- Prevent Divide By Zero in
Money#allocate
- Add bolívar soberano (VES)
- Deprecate bolívar fuerte (VEF)
- Deprecate old
#format
rules passed as a symbol - Clarify
use_i18n
deprecation - Add
:currency
locale_backend for explicit per-currency localization
- Add :format option to the Formatter
- Add ruby 2.6.0 support
- Performance improvement (lazy stringify currency keys)
- Add
Money.locale_backend
for translation lookups - Deprecate
use_i18n
flag in favour oflocale_backend = :i18n
- Deprecate old formatting rules in favour of
:format
- LVL and LTL are no longer used
- Add
Currency#iso?
for checking if currency is iso or not - Relax versions-lock of
i18n
andrspec
dependencies - Add Bitcoin Cash
- Fix incorrect behaviour of
Currency#find_by_currency_iso
when given empty input
- Remove caching of
.empty
/.zero
- Preserve assigned bank when rounding
- Always round the fractional part when calling
#round
- Wrap all amount parts when
:html_wrap
option is used - Deprecate
#currency_as_string
and#currency_as_string=
(in favour of#with_currency
) - Add
#with_currency
for swapping the currency - Rewrite allocate/split (fixing some penny losing issues)
- Fix regression: if enabled use i18n locales in Money#to_s
- Fix regression: ignore formatting defaults for Money#to_s
- Fix issue with adding non-USD money to zero (used when calling
.sum
on an array)
- Support i18n 1.0
- Update yard dependency to 0.9.11
- Support for ruby 2.5.0
- Add inheritance for currency definitions
- Added new symbol for bitcoin denomination
- Specify custom rounding precision when using
infinite_precision
- Allow splits with sums greater than 1
- Prevent arithmetic methods from losing reference to the bank
- Fix coerced zero numeric subtraction
- Fix south asian formatting to support whole numbers
- Refactor formatting logic
- Fix an issue with Money.empty memoization
- Added support for i18n version 0.9
- Disabled rounding when verifying allocation splits
- Added Chinese Yuan Offshore (CNH)
- Fixed html_entity for ARS
- Fixed KZT symbol
- Allowed comparing cross currency when both are zero
- Fixed memory rate store
- Corrected HUF subunit and thousands separator config
- Extracted heuristics into money-heuristics gem
- Resolving NIO ambiguity with CAD
- Display the BBD $ symbol before digits
- Symbol first for NIO and PAB currencies
- Added support for the British Penny (GBX)
- Fixed LKR currency html_entity symbol
- Removed subunits for HUF
- Fixed
#from_amount
acceptingnil
as currency_code - Relaxed i18n version (< 0.9)
- Set symbol for UZS
- Added disambiguate_symbol for XFU
- Fixed Peruvian Sol name
- Fixed symbol_first for VND (now
false
)
- Fixed issue with calling
format
on a frozenMoney
object
- Ruby 2.4.0 support
- Fixed UZS syntax
- Fixed HUF smallest denomination
- Fixed ruby 1.9 issues
- Fixed html entity for COP
- Updated all currency decimals to ISO-4217
- Fixed money allocation for negative amounts
- Fixed symbol_first for RON
- Fixed disambiguate option when symbol is set to true
- Fixed thousands separator for CZK
- Improved formatter performance by precaching I18n calls
- Changed DKK symbol from 'kr' to 'kr.'
- Improved Money::Formatting#format docs
- Updated VEF symbol from 'Bs F' to 'Bs'
Currency#exponent
now returns Fixnum- Fixed coercion issues
- Fixed edge case with explicit override of thousands separator and decimal mark
Money#==
will now raise error for non-zero numeric values- Fixed divmod
- Added disambiguation symbol to USD Dollar
- Use disambiguation symbol when both disambiguate and symbol are true in
format
method
- Changed
Money#<=>
to returnnil
if the comparison is inappropriate. (#584) - Remove implicit conversion of values being compared. Only accept
Money
and subclasses ofMoney
for comparisons and raise TypeError otherwise. - When comparing fails due to
Money::Bank::UnknownRate
Money#<=>
will now returnnil
asComparable#==
will not rescue exceptions in the next release. - Fix
Currency
specs for#exponent
and#decimal_places
not making assertions. - Fix a couple of Ruby warnings found in specs.
- Fix
Money#-
,Money#+
arithmetics for Ruby 2.3+ : check for zero value without using eql? with a Fixnum. (#577) - Use
Money#decimal_mark
when formatting withrounded_infinite_precision
rule set totrue
. - Replaced meta-defined
thousands_separator
anddecimal_mark
methods with regular methods. (#579)
- Fixed VariableExchange#exchange_with for big numbers.
- Add Currency symbol translation support
Currency.all
raises a more helpful error message (Currency::MissingAttributeError
)if a currency has no priorityCurrency
implementsEnumerable
.Currency#<=>
sorts alphabetically byid
if thepriority
s are the same, and no longer raises an error if one of the priorities is missing.Money::Currency.unregister
can take an ISO code argument in addition to a hash.Money::Currency.unregister
returnstrue
if the given currency previously existed, andfalse
if it didn't.- Fix symbol for SZL currency
- Trying to create a Currency without an
iso_code
now raises a more helpful error message. - Add
Money.usd
,.cad
and.eur
as aliases for.us_dollar
,.ca_dollar
, and.euro
. - Add helper methods for British pounds:
Money.pound_sterling
andMoney.gbp
. - Add
Money.from_amount
to create money from a value in units instead of fractional units. - Changed CHF symbol from 'Fr' to 'CHF'
- Changed CLF exponent from 0 to 4
- Changed CLP subunit_to_unit from 1 to 100
- Minor fixes to prevent warnings on unused variables and the redefinition of
Money.default_currency
Money#==
changed to acknowledge that 0 in one currency is equal to 0 in any currency.- Changed KRW subunit_to_unit from 100 to 1
- Decouple exchange rates storage from bank objects and formalize storage public API. Default is
Money::RatesStore::Memory
. Currency.new
now a singleton by its id
- Fix format for BYR currency
- Add method to round a given amount of money to the nearest possible value in cash (aka Swedish rounding).
- Fixed the subunit_to_unit values of the CLP and KRW currencies
- Add option for
disambiguate
symbols for formatting - Fixed the subunit_to_unit values of the VND currency
- Fix formatting of NGN - show symbol before amount
- Switch default and alternate symbols for RUB currency
- Fix symbol for TRY currency
- Add
Money.default_formatting_rules
hash, meant to define default rules for everytimeMoney#format
is called. They can be overwritten if provided on method call - Add support for the new official symbol for Russian Ruble (RUB) — «₽»
- Ensure set is loaded
- Fixes formatting error when both
thousands_separator
anddecimal_mark
was added to Money#format as options. - Add Money#to_i which returns the whole part of the value. i.e. Money.new(100, "USD").to_i # => 1
- Fix output on Ukrainian Hryvnia symbol in HTML.
- Add documentation about i18n in README.
- Update iso code, symbol, subunit for the new Turkmenistani manat (GH-181)
- Performance Improvements (1.99x faster on MRI, 1.85x on Rubinius, 41.4x faster on JRuby)
- Money can now add and subtract Fixnum 0
- Money#new uses Money.default_currency if currency arg is nil (GH-410)
- Fixed formatting of NOK, putting the symbol after numbers
- Fixed issue where rounded_infinite_precision formatting fails for some localized currencies (GH-422)
- Remove lingering Monetize call
- Remove deprecated methods.
- Fix issue with block form of rounding_mode.
- Deprecated methods lists caller on print out for easier updating.
- Added support for Money::Currency#to_str and Money::Currency#to_sym
- Added ability to temporally change the rounding methond inside a given block
- Replaced parsing and core extensions with the monetize gem
- Fix BTC subunit
- New option :sign_positive to add a + sign to positive numbers
- Only allow to multiply a money by a number (int, float)
- Fix typo
- Wrap the currency symbol in a span if :html is specified in the rules
- Added Money::Currency.all method
- Allow combined comparison operator to handle zero values without rates
- Added Money::Currency.unregister method
- Works on Ruby 1.8.7
- Update deps
- Depreciate Money.parse
- Passing symbol: false when formatting 'JPY' currency in :ja locale will work as expected
- Divide now obeys the specified rounding mode
- Add Money#round method. This is helpful when working in infinite_precision mode and would like to perform rounding at specific points in your work flow.
- In infinite precision mode, deserialized Money objects no longer return Float values from the
fractional
method. - Changed
thousands_separator
for Swedish Krona from dot to blank space. - Allow mathematical operations with first argument being not an instance of Money (eg. 2 * money instead of money * 2).
- Money#dollars and Money#amount methods return numbers of type BigDecimal.
- Change Money.from_bigdecimal (and in that way .to_money too) to keep precision when using
Money.infinite_precision = true
- Add :rounded_infinite_precision option to .format
- Changed the New Taiwan Dollar symbol position from after the amount to before the amount.
- Passing a Money instance to the Money constructor will obtain a new Money object with the same property values as the original
- Add deprecation warning to comparators
- Add Money.disallow_currency_conversion! option
- Allow to inherits from
Money
- Added :sign_before_symbol option to format negative numbers as -£1 rather than £-1
- Ensure BigDecimal.new always receives a string - compatibility fix for ruby-1.9.2-p320
- Update Maldivian Currency to MVR and fix ރ. to be ރ
- Add exponent to currency
- Add find_numeric to find currencies by ISO 4217 numeric code.
- Fixed regression where thousands separator was missing on certain currencies. (GH-245)
- Added :symbol_before_without_space option to add a space between currency symbol and amount.
- Fix currency assumption when parsing $ with a non-USD default currency.
- Changed the Bulgarian lev symbol position from before the amount to after the amount.
- Changed the symbol and html entity for INR. It is now "₹" instead of "₨".
- Added Money::Currency.analyze for determining potential currencies for a given string using powereful algorithms - will detect symbols, iso codes and names even if mixed with text.
- Changed UGX symbol from 'Sh' to 'USh'.
- Changed SYP symbol from "£ or ل.س" to "£S". The previous symbols remain as alternates.
- Changed RWF symbol from 'FR' to 'FRw'.
- Changed RSD symbol from "din. or дин." to 'РСД'. The previous symbols remain as alternates.
- Added MGA symbol 'Ar'
- Added KGS symbol 'som'
- Changed KES symbol from 'Sh' to 'KSh'
- Added ETB symbol 'Br'
- Changed EGP symbol from "£ or ج.م" to "ج.م"
- Changed DJF symbol from 'Fr' to 'Fdj'
- Changed CVE symbol from '$ or Esc' to '$'. 'Esc' remains as an alternate symbol.
- Added BTN symbol 'Nu.'
- Changed BAM symbol from 'KM or КМ' to 'КМ', the alternate (cyrillic script) remains as an alternate symbol.
- Added alternate symbols for all currencies. For example, USD can be written as both '$' and 'US$', SEK can be 'Kr' or ':-', etc.
- Renamed Money#cents to Money#fractional. Money#cents can still be used as a synonym and equivalent of Money#fractional.
- Added Money.new_with_amount and Money#amount. Money.new_with_dollars and Money#dollars remain as synonyms.
- Calling Bank::Base.instance doesn't make Bank::VariableExchange.instance return Bank::Base.instance anymore (semaperepelitsa)
- Update Turkmenistan manat from TMM to TMT currency (GH-181). [Thanks @Exoth]
- Moved ZWD Zimbabwean dollars to currency_bc.json, also added there ZWL, ZWN, and ZWR Zimbabwean dollars (GH-184).
- Switch to multi_json gem (GH-170)
- Fix "warning: ambiguous first argument..." (GH-166)
- Update dependencies to latest and greatest (GH-172)
- TravisBot is now watching Pull Request!!! (GH-171)
- Minor code cleaning
- Remove subunit from South Korean won (KRW)
- Fixed bug where bankers rounding wasn't being used everywhere.
- Minor bugfix - incorrect use of character range resulted in botched results for Money::Parsing#extract_cents (GH-162)
- Money::Currency::TABLE removed. Use Money::Currency.register to add additional currencies (GH-143)
- Fix rounding error in Numeric.to_money (GH-145)
- Allow on-the-fly calculation of decimal places if not known already (GH-146,GH-147,GH-148)
- Move Euro symbol ahead of amount (GH-151)
- Changed settings for Polish currency (GH-152)
- Fall back to symbol if there is no html_entity present (GH-153)
- Optionally Allow parsing of money values prefixed by symbols in key currencies (GH-155)
- Fix bug where rates exported to a file from VariableExchange leave the File object open (GH-154)
- Added Money#positive? and Money#negative? methods (GH-157)
- Fix format function output for custom currencies (GH-156)
- Fix parsing of strings with 3 decimal digits (GH-158)
- Updated development dependencies
- Said goodbye to RubyForge
-
Money.to_money now understands a currency option (GH-121)
-
Added Money#-@ method to change object polarity (GH-122)
-
Added Money#symbol_or_iso_code utility method (GH-128)
-
Money.parse now understands trailing - as negative inputs (GH-133)
-
Money::Currency.new now validates input to avoid memory leaks (GH-137)
-
Forced UTF-8 encoding on currency JSON (GH-117)
-
Fixed position of Philippine peso sign (GH-124)
-
Fixed position of Danish currency sign (GH-127)
- Add missing config dir.
The big change this release is moving the currency information into a JSON file. This should make it easier for users to add and test things. Thanks to Steve Morris for working on this during his Mendicant University course.
In addition to this big change there were well over a dozen other minor changes.
- a new exchange bank nordea has been added to the README. (k33l0r)
- a new exchange bank nbrb_currency has been added to the README. (slbug)
- update Rake tasks
- See our CI status in the README
- Add syntax highlighting to the README (phlipper)
- Remove minor unit from YEN (pwim)
- Format YEN (pwim)
- Update README for
_as_string
(mjankowski) - Update Lebanon currency (kaleemullah)
- Update Polish złoty (holek)
- Move currency information into JSON storage! (stevemorris)
- Add ISO4217 Numeric codes (alovak)
- EEK currency is no longer used, kept for BC (#issue/110)
- Lithuanian Litas symbol position fixed (laurynas)
- Fixed README typos (phlipper)
- Fixed README typos (pwim)
- Fix specs (alovak)
- Add encoding indicator to top of Gemspec
- add Money#to_d (thanks Andrew White)
- Add Money.use_i18n, this allows you to enable/disable i18n from being used, even if it's required in your app.
- i18n enhancements (thanks eloyesp link)
- README updates (thanks pconnor)
- Break into modules
- Added
:no_cents_if_whole
format option - Update HKD from Ho to Cent
- Performance improvements (thanks weppos)
- Added Symbol#to_currency
- Added Gemfile for development
- Updated HUF currency to use
symbol_first => false
- Updated "Turkish New Lira" to "Turkish Lira"
- Floating point comparison needs to Epsilon aware (thanks Tobias Luetke)
- reimplement fix for #issue/43, enable Marshal.(load/dump)
- Add a symbol position option for Money#format (thanks Romain, Gil and Julien)
- Updated CNY to use "Fen" and subunit_to_unit of 100
- Updates to work with gem-testers.org
- Fixed issue with #format(no_cents: true) (thanks Romain & Julien)
- Enhancements to Money::Currency (thanks Matthew McEachen)
- Replace delimiter with thousands_separator
- Replace separator with decimal_mark
- Added symbol_first and html_entity
- Added allocation algorithm for fair(ish) splitting of money between parties without losing pennies (thanks Tobias Luetke)
- Always store cents as an Integer (thanks Abhay Kumar)
- Fixed TypeError in rate exchange (thanks Christian Billen)
- Cleanup #parse (thanks Tom Lianza)
- Added Currency#decimal_places.
- Fixed error with Money#to_s error with negative amounts that are only cents.
- Fixed an error in #to_s when cents is negative
- Fixed an error in #to_s which appended extra 0s incorrectly
- Removed erroneous require.
- Updated to RSpec2.
- Use i18n to lookup separator and delimiter signs.
- Removed all deprecated methods up to v3.5.0, including the following:
- Using Money#format with params instead of a Hash.
- Using a Hash with Money#new.
- Using Bank#exchange, use Bank#exchange_with instead.
- Updated Money#to_s to respect :separator and :subunit_to_unit.
- Fixed Money#format for :subunit_to_unit != 100. (#issue/37)
- Fixed String#to_money for :subunit_to_unit != 100. (#issue/36)
- Removed duplicate currencies. (#issue/38)
- Fixed issue related to JRuby returning 2 for Math.log10(1000).floor instead of correctly returning 3.
- Added support for creating objects with the main monetary unit instead of cents. (#issue/25)
- Deprecated
Money#format
with separate params instead of Hash. Deprecation target set to Money 3.5.0. (#issue/31) - Deprecated
Money#new(0, currency: "EUR")
in favor ofMoney#new(0, "EUR")
. Deprecation target set to Money 3.5.0. (#issue/31) - Throw ArgumentError when trying to multiply two Money objects together. (#issue/29)
- Update Money#parse to use :subunit_to_unit (#issue/30)
- Downgraded required_rubygems_version to >= 1.3.6. (#issue/26)
- Use BigDecimal when floating point calculations are needed.
- Ruby 1.9.2 compatibility enhancements.
- Implemented
Money::Bank::Base
. (#issue/14) - Added
Money::Bank::Base#exchange_with
. - Deprecated
Money::Bank::Base#exchange
. Deprecation target set to Money 3.2.0. - Implented
Money::Bank::VariableExchange
- Deprecated
Money::VariableExchangeBank
. Deprecation target set to Money 3.2.0. - Deprecate
Money::SYMBOLS
,Money::SEPARATORS
andMoney::DELIMITERS
. Deprecation target set to Money 3.2.0. (#issue/16) - Implemented
#has
forMoney
andMoney::Currency
. - Refactored test suite to conform to RSpec conventions.
- Moved project from FooBarWidget to RubyMoney
- Added Simone Carletti to list of authors.
- Moved
@rounding_method
fromMoney::Bank::VariableExchange
toMoney::Bank::Base
. (#issue/18) - Added
#setup
toMoney::Bank::Base
. Called from#initialize
. (#issue/19) - Added google_currency to list of Currency Exchange Implementations.
- Added
#export_rates
toMoney::Bank::VariableExchange
. (#issue/21) - Added
#import_rates
toMoney::Bank::VariableExchange
. (#issue/21) - Removed dependency on Jeweler.
- Replaced usage of hanna with yardoc.
- Rewrote/reformatted all documentation.
- Fixed incorrect URLs in documentation. (#issue/17)
- Updated
:subunit_to_unit
for HKD from 10 to 100. (#issue/20) - Updated Ghanaian Cedi to use correct ISO Code, GHS. (#issue/22)
- Make
default
rake task callspec
. (#issue/23)
- Added google_currency to list of Currency Exchange Implementations.
- Added
#export_rates
toMoney::Bank::VariableExchange
. (#issue/21) - Added
#import_rates
toMoney::Bank::VariableExchange
. (#issue/21)
- Updated
:subunit_to_unit
for HKD from 10 to 100. (#issue/20)
- Moved
@rounding_method
fromMoney::Bank::VariableExchange
toMoney::Bank::Base
. (#issue/18) - Added
#setup
toMoney::Bank::Base
. Called from#initialize
. (#issue/19)
- Fixed incorrect URLs in documentation. (#issue/17)
- Implemented
Money::Bank::Base
. (#issue/14) - Added
Money::Bank::Base#exchange_with
. - Deprecated
Money::Bank::Base#exchange
. Deprecation target set to Money 3.2.0. - Implented
Money::Bank::VariableExchange
- Deprecated
Money::VariableExchangeBank
. Deprecation target set to Money 3.2.0. - Deprecate
Money::SYMBOLS
,Money::SEPARATORS
andMoney::DELIMITERS
. Deprecation target set to Money 3.2.0. (#issue/16) - Implemented
#has
forMoney
andMoney::Currency
. - Refactored test suite to conform to RSpec conventions.
- Moved project from FooBarWidget to RubyMoney
- Added Simone Carletti to list of authors.
- Fixed rounding error in
Numeric#to_money
. (#issue/15)
- Added
Money#abs
. - Added ability to pass a block to
VariableExchangeBank#new
or#exchange
, specifying a custom truncation method - Added optional
currency
argument toNumeric#to_money
. (#issue/11) - Added optional
currency
argument toString#to_money
. (#issue/11) - Use '¤' as the default currency symbol. (#issue/10)
- Updated
Currency#subunit_to_unit
documentation (it's an integer not a string). - Fixed issue when exchanging currencies with different
:subunit_to_unit
values. Numeric#to_money
now respects:subunit_to_unit
. (#issue/12)
- Use
:subunit_to_unit
in#to_s
,#to_f
and#format
. - Deprecated
Money#SEPARATORS
andMoney#DELIMITERS
.
- Updated
#exchange
to avoid floating point rounding errors. - Added
:separator
and:delimiter
toCurrency
- Updated the attributes of the Chilean Peso.
- Added
#currency_as_string
and#currency_as_string=
for easier integration with ActiveRecord/Rails
- Added
#div
,#divmod
,#modulo
,#%
and#remainder
toMoney
.
- Added
#eql?
toMoney
- Updated
Numeric#to_money
to work with all children ofNumeric
(i.e.BigDecimal
,Integer
,Fixnum
,Float
, etc)
- Version Bump due to compatibility changes with ActiveRecord. See conversation here for more information.
- Currency is now represented by a
Currency
Object instead of aString
.
- Can now divide two Money objects by one another using
#/
. - Can now convert a Money object to a float using
#to_f
. - Users can now specify Separators and Delimiters when using
#format
. - Support for Brazilian Real
Money.new(1_00, :BRL)
- Migrated to Jeweler