2.0.1 - 2019-05-xx
- test code for Node.js v11
- test code for Node.js v12
- package keywords in
package.json
- bump dependencies
- format code with Standard
- Readme: rename
fs-opensourcetofuturestudiousername
- remove Prettier dependencies
2.0.0 - 2018-05-16
The breaking change from 1.0 to 2.0 is that all methods accept an object as parameter
instead of individual parameters. This allows you to pass the parameters of interest.
Example:
// request latest rates for a given base rate
// before:
// the first param is "symbols", but we don't necessarily want to specify it
const latest = fixer.latest(undefined, 'USD')
// now:
// add "symbols: 'EUR, AUD'" if you wish, but not necessary
const latest = fixer.latest({ base: 'USD' })2.0.0release 🚀 🎉.between()and.historical()methods to access historic rates (.between()and.historial()are aliased and run the same functionality).fromTo()and.convert()methods to convert between rates (.fromTo()and.convert()are aliased and run the same functionality).timeseries()method to access exchange rates for a time range.fluctuation()method to access exchange rate changes for a selected time range- code snippets for new methods in Readme
- all methods accept an
optionsobject - tests for new methods
- code examples in Readme for existing methods from
1.0
1.0.0 - 2018-05-10
1.0.0release 🚀 🎉- access currency symbols
- access rates for custom base currency
- access latest exchange rates
- access exchange rates for historic dates
- early testing release
- access currency symbols
- access rates for custom base currency
- access latest exchange rates