File tree Expand file tree Collapse file tree 3 files changed +8
-2
lines changed Expand file tree Collapse file tree 3 files changed +8
-2
lines changed Original file line number Diff line number Diff line change 1
1
# Changelog
2
2
3
+ ## [ 1.2.0] - 2021-06-14
4
+ ### Added
5
+ - ` BiMap.put_new_key/3 ` and ` BiMap.put_new_value/3 ` (by [ @ckampfe ] )
6
+
3
7
## [ 1.1.1] - 2021-03-23
4
8
- This release is a big rollup of dev dependency updates that have accumulated during this time.
5
9
- This includes using modern version of ExDoc for HexDocs and is the only user-facing change.
@@ -24,6 +28,7 @@ This library is pretty stable and 1.0 ready. Nothing has changed since 0.1.1.
24
28
## 0.1.0 - 2017-08-10
25
29
First version 🎉
26
30
31
+ [ 1.2.0 ] : https://github.com/mkaput/elixir-bimap/compare/v1.1.1...v1.2.0
27
32
[ 1.1.1 ] : https://github.com/mkaput/elixir-bimap/compare/v1.1.0...v1.1.1
28
33
[ 1.1.0 ] : https://github.com/mkaput/elixir-bimap/compare/v1.0.1...v1.1.0
29
34
[ 1.0.1 ] : https://github.com/mkaput/elixir-bimap/compare/v1.0.0...v1.0.1
@@ -32,3 +37,4 @@ First version 🎉
32
37
33
38
[ @NullOranje ] : https://github.com/NullOranje
34
39
[ @mat-hek ] : https://github.com/mat-hek
40
+ [ @ckampfe ] : https://github.com/ckampfe
Original file line number Diff line number Diff line change @@ -15,7 +15,7 @@ The package can be installed by adding `bimap` to your list of dependencies in `
15
15
16
16
``` elixir
17
17
def deps do
18
- [{:bimap , " ~> 1.1 " }]
18
+ [{:bimap , " ~> 1.2 " }]
19
19
end
20
20
```
21
21
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.1.1 "
4
+ @ version "1.2.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