File tree Expand file tree Collapse file tree 3 files changed +9
-2
lines changed Expand file tree Collapse file tree 3 files changed +9
-2
lines changed Original file line number Diff line number Diff line change 1
1
# Changelog
2
2
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
+
3
8
## [ 1.0.1] - 2019-06-17
4
9
### Fixed
5
10
- ` 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.
15
20
## 0.1.0 - 2017-08-10
16
21
First version 🎉
17
22
23
+ [ 1.1.0 ] : https://github.com/mkaput/elixir-bimap/compare/v1.0.1...v1.1.0
18
24
[ 1.0.1 ] : https://github.com/mkaput/elixir-bimap/compare/v1.0.0...v1.0.1
19
25
[ 1.0.0 ] : https://github.com/mkaput/elixir-bimap/compare/v0.1.1...v1.0.0
20
26
[ 0.1.1 ] : https://github.com/mkaput/elixir-bimap/compare/v0.1.0...v0.1.1
21
27
22
28
[ @NullOranje ] : https://github.com/NullOranje
29
+ [ @mat-hek ] : https://github.com/mat-hek
Original file line number Diff line number Diff line change @@ -12,7 +12,7 @@ The package can be installed by adding `bimap` to your list of dependencies in `
12
12
13
13
``` elixir
14
14
def deps do
15
- [{:bimap , " ~> 1.0 " }]
15
+ [{:bimap , " ~> 1.1 " }]
16
16
end
17
17
```
18
18
Original file line number Diff line number Diff line change 1
1
defmodule BiMap.Mixfile do
2
2
use Mix.Project
3
3
4
- @ version "1.0.1 "
4
+ @ version "1.1.0 "
5
5
@ github "https://github.com/mkaput/elixir-bimap"
6
6
7
7
def project do
You can’t perform that action at this time.
0 commit comments