chore: release version v1.2.1

This commit is contained in:
James Harton 2022-09-22 23:48:53 +00:00
parent 5a487190eb
commit 1f32239bee
3 changed files with 11 additions and 2 deletions

View file

@ -5,6 +5,15 @@ See [Conventional Commits](Https://conventionalcommits.org) for commit guideline
<!-- changelog --> <!-- changelog -->
## [v1.2.1](https://gitlab.com/***PROJECT_PATH***/compare/v1.2.0...v1.2.1) (2022-09-22)
### Bug Fixes:
* correctly validate IPv4 netmasks
## [v1.2.0](https://gitlab.com/***PROJECT_PATH***/compare/v1.1.1...v1.2.0) (2022-03-01) ## [v1.2.0](https://gitlab.com/***PROJECT_PATH***/compare/v1.1.1...v1.2.0) (2022-03-01)

View file

@ -13,7 +13,7 @@ by adding `ip` to your list of dependencies in `mix.exs`:
```elixir ```elixir
def deps do def deps do
[ [
{:ip, "~> 1.2.0"} {:ip, "~> 1.2.1"}
] ]
end end
``` ```

View file

@ -4,7 +4,7 @@ defmodule IP.Mixfile do
@description """ @description """
Represtations and tools for IP addresses and networks. Represtations and tools for IP addresses and networks.
""" """
@version "1.2.0" @version "1.2.1"
def project do def project do
[ [