From 3e7cf75fe8b9f1695c806e1eeef9237c5e4fa233 Mon Sep 17 00:00:00 2001 From: Constantin Rack Date: Sun, 22 Nov 2015 14:19:49 +0100 Subject: [PATCH] Release 0.4.0 --- CHANGELOG.md | 18 +++++++++++++++++- README.md | 2 +- mix.exs | 2 +- 3 files changed, 19 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index d4f7080..cae6160 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,21 @@ This project adheres to [Semantic Versioning](http://semver.org/). ## [Unreleased] +## [0.4.0] - 2015-11-22 +### Added +- Code documentation +- Code coverage and badge +- Inch-CI reporting and badge +- Tests for IPv6 `match/2` +- Usage examples + +### Fixed +- Error reason is not promoted +- Number of hosts not correct for IPv6 CIDR + +### Removed +- Unused method `mask_by_ip/1` + ## [0.3.0] - 2015-10-27 ### Added - Support for IPv6 ([Laurens Duijvesteijn](https://github.com/duijf)) @@ -27,7 +42,8 @@ This project adheres to [Semantic Versioning](http://semver.org/). - Initial commit -[unreleased]: https://github.com/c-rack/cidr-elixir/compare/v0.3.0...HEAD +[unreleased]: https://github.com/c-rack/cidr-elixir/compare/v0.4.0...HEAD +[0.4.0]: https://github.com/c-rack/cidr-elixir/compare/v0.3.0...v0.4.0 [0.3.0]: https://github.com/c-rack/cidr-elixir/compare/v0.2.0...v0.3.0 [0.2.0]: https://github.com/c-rack/cidr-elixir/compare/v0.1.0...v0.2.0 [0.1.0]: https://github.com/c-rack/cidr-elixir/commit/c58275a952ec308e5509bb13455e186c894dc3e0 diff --git a/README.md b/README.md index 69c52d4..38b5dfc 100644 --- a/README.md +++ b/README.md @@ -16,7 +16,7 @@ as a dependency: ```elixir defp deps do [ - {:cidr, ">= 0.3.0"} + {:cidr, ">= 0.4.0"} ] end ``` diff --git a/mix.exs b/mix.exs index 04c065e..4c53c67 100644 --- a/mix.exs +++ b/mix.exs @@ -1,7 +1,7 @@ defmodule CIDR.Mixfile do use Mix.Project - @version "0.3.0" + @version "0.4.0" def project do [