Skip to content

Commit 653f9be

Browse files
committed
Merge pull request #23 from c-rack/release-0.4.0
Release 0.4.0
2 parents cbc54fd + 3e7cf75 commit 653f9be

File tree

3 files changed

+19
-3
lines changed

3 files changed

+19
-3
lines changed

CHANGELOG.md

+17-1
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,21 @@ This project adheres to [Semantic Versioning](http://semver.org/).
44

55
## [Unreleased]
66

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+
722
## [0.3.0] - 2015-10-27
823
### Added
924
- Support for IPv6 ([Laurens Duijvesteijn](https://github.com/duijf))
@@ -27,7 +42,8 @@ This project adheres to [Semantic Versioning](http://semver.org/).
2742
- Initial commit
2843

2944

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
3147
[0.3.0]: https://github.com/c-rack/cidr-elixir/compare/v0.2.0...v0.3.0
3248
[0.2.0]: https://github.com/c-rack/cidr-elixir/compare/v0.1.0...v0.2.0
3349
[0.1.0]: https://github.com/c-rack/cidr-elixir/commit/c58275a952ec308e5509bb13455e186c894dc3e0

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ as a dependency:
1616
```elixir
1717
defp deps do
1818
[
19-
{:cidr, ">= 0.3.0"}
19+
{:cidr, ">= 0.4.0"}
2020
]
2121
end
2222
```

mix.exs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
defmodule CIDR.Mixfile do
22
use Mix.Project
33

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

66
def project do
77
[

0 commit comments

Comments
 (0)