File tree 3 files changed +19
-3
lines changed
3 files changed +19
-3
lines changed Original file line number Diff line number Diff line change @@ -4,6 +4,21 @@ This project adheres to [Semantic Versioning](http://semver.org/).
4
4
5
5
## [ Unreleased]
6
6
7
+ ## [ 0.4.0] - 2015-11-22
8
+ ### Added
9
+ - Code documentation
10
+ - Code coverage and badge
11
+ - Inch-CI reporting and badge
12
+ - Tests for IPv6 ` match/2 `
13
+ - Usage examples
14
+
15
+ ### Fixed
16
+ - Error reason is not promoted
17
+ - Number of hosts not correct for IPv6 CIDR
18
+
19
+ ### Removed
20
+ - Unused method ` mask_by_ip/1 `
21
+
7
22
## [ 0.3.0] - 2015-10-27
8
23
### Added
9
24
- Support for IPv6 ([ Laurens Duijvesteijn] ( https://github.com/duijf ) )
@@ -27,7 +42,8 @@ This project adheres to [Semantic Versioning](http://semver.org/).
27
42
- Initial commit
28
43
29
44
30
- [ unreleased ] : https://github.com/c-rack/cidr-elixir/compare/v0.3.0...HEAD
45
+ [ unreleased ] : https://github.com/c-rack/cidr-elixir/compare/v0.4.0...HEAD
46
+ [ 0.4.0 ] : https://github.com/c-rack/cidr-elixir/compare/v0.3.0...v0.4.0
31
47
[ 0.3.0 ] : https://github.com/c-rack/cidr-elixir/compare/v0.2.0...v0.3.0
32
48
[ 0.2.0 ] : https://github.com/c-rack/cidr-elixir/compare/v0.1.0...v0.2.0
33
49
[ 0.1.0 ] : https://github.com/c-rack/cidr-elixir/commit/c58275a952ec308e5509bb13455e186c894dc3e0
Original file line number Diff line number Diff line change @@ -16,7 +16,7 @@ as a dependency:
16
16
``` elixir
17
17
defp deps do
18
18
[
19
- {:cidr , " >= 0.3 .0" }
19
+ {:cidr , " >= 0.4 .0" }
20
20
]
21
21
end
22
22
```
Original file line number Diff line number Diff line change 1
1
defmodule CIDR.Mixfile do
2
2
use Mix.Project
3
3
4
- @ version "0.3 .0"
4
+ @ version "0.4 .0"
5
5
6
6
def project do
7
7
[
You can’t perform that action at this time.
0 commit comments