Skip to content

Commit 8b414cd

Browse files
committed
prepare release 1.1.0
1 parent ec57eee commit 8b414cd

File tree

3 files changed

+9
-2
lines changed

3 files changed

+9
-2
lines changed

CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,10 @@
11
# Changelog
22

3+
## [1.1.0] - 2020-03-25
4+
### Added
5+
- `BiMap.fetch!/2` and `BiMap.fetch_key!/2` (by [@mat-hek])
6+
- `BiMultiMap.fetch!/2` and `BiMultiMap.fetch_keys!/2`
7+
38
## [1.0.1] - 2019-06-17
49
### Fixed
510
- `Enumerable.slice/1` is not implemented (by [@NullOranje])
@@ -15,8 +20,10 @@ This library is pretty stable and 1.0 ready. Nothing has changed since 0.1.1.
1520
## 0.1.0 - 2017-08-10
1621
First version 🎉
1722

23+
[1.1.0]: https://github.com/mkaput/elixir-bimap/compare/v1.0.1...v1.1.0
1824
[1.0.1]: https://github.com/mkaput/elixir-bimap/compare/v1.0.0...v1.0.1
1925
[1.0.0]: https://github.com/mkaput/elixir-bimap/compare/v0.1.1...v1.0.0
2026
[0.1.1]: https://github.com/mkaput/elixir-bimap/compare/v0.1.0...v0.1.1
2127

2228
[@NullOranje]: https://github.com/NullOranje
29+
[@mat-hek]: https://github.com/mat-hek

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ The package can be installed by adding `bimap` to your list of dependencies in `
1212

1313
```elixir
1414
def deps do
15-
[{:bimap, "~> 1.0"}]
15+
[{:bimap, "~> 1.1"}]
1616
end
1717
```
1818

mix.exs

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

4-
@version "1.0.1"
4+
@version "1.1.0"
55
@github "https://github.com/mkaput/elixir-bimap"
66

77
def project do

0 commit comments

Comments
 (0)