Skip to content

Commit c1f332d

Browse files
author
Daniel Khaapamyaki
committed
bump version
1 parent cf2158e commit c1f332d

2 files changed

Lines changed: 5 additions & 5 deletions

File tree

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
A collection of German Bank Data including BIC, Bankcodes, PAN and more useful information based on the [Bundesbank Data Set](https://www.bundesbank.de/de/aufgaben/unbarer-zahlungsverkehr/serviceangebot/bankleitzahlen/download-bankleitzahlen-602592)
66

7-
**Current Data Set is Valid until December, 12th 2020**
7+
**Current Data Set is Valid until March, 3rd 2021**
88

99
## Installation
1010

@@ -14,7 +14,7 @@ by adding `bundesbank` to your list of dependencies in `mix.exs`:
1414
```elixir
1515
def deps do
1616
[
17-
{:bundesbank, "~> 0.2.1"}
17+
{:bundesbank, "~> 0.3.0"}
1818
]
1919
end
2020
```
@@ -28,7 +28,7 @@ Get all banks from the collection
2828
```elixir
2929
banks = Bundesbank.all
3030
Enum.count(banks)
31-
# 15947
31+
# 15788
3232
```
3333

3434
Filter banks by a given key.
@@ -57,7 +57,7 @@ bank = Bundesbank.filter_by(:code, "20050000")
5757
banks = Bundesbank.filter_by(:city, "Berlin")
5858
# [%Bundesbank.Bank{bank_name: "BBk Berlin", bic: "MARKDEF1100", change_code: "U", ...
5959
Enum.count(banks)
60-
# 94
60+
# 101
6161
```
6262

6363
## Contributing

mix.exs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
defmodule Bundesbank.MixProject do
22
use Mix.Project
33

4-
@version "0.2.1"
4+
@version "0.3.0"
55

66
def project do
77
[

0 commit comments

Comments
 (0)