Skip to content

Releases: daskycodes/bundesbank

v0.3.0

30 Dec 22:44
Compare
Choose a tag to compare
  • New dataset is valid from December, 7th 2020 until March, 3rd 2021

v0.2.0

05 Aug 09:54
Compare
Choose a tag to compare

Add normalization of values for filter_by/2 function

  • Bankcodes can now be give as integers

    Bundesbank.filter_by(:code, 50010060) == Bundesbank.filter_by(:code, "50010060")
    true
  • Short BICs are now auto filled with "X"s

     Bundesbank.filter_by(:bic, "HSHNDEHHXXX") == Bundesbank.filter_by(:bic, "HSHNDEHH")
     true
  • String values can be given case insensitive

    Bundesbank.filter_by(:city, "Berlin") == Bundesbank.filter_by(:city, "berlin")
    true

Add get/1 function to get a single bank given its bank code

iex> %Bundesbank.Bank{bank_name: bank_name} = Bundesbank.get(50010060)
iex> bank_name
"Postbank Ndl DB PFK"

v0.1.3

20 May 23:10
Compare
Choose a tag to compare
  • improve overall performance and remove bloat by using nimble_csv to load the dataset

  • remove mix update_bundesbank since it is not needed

Bankcodes valid from June, 08th 2020 through September, 06th 2020

v0.1.2

11 Apr 23:28
Compare
Choose a tag to compare