diff --git a/CHANGELOG.md b/CHANGELOG.md index 03fcdf2..fb6d4a0 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,6 +6,14 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [1.2.0] - 2022-12-07 +### Added +- Official support from Elixir 1.11 to Elixir 1.14. Thanks [@ayrat555](https://github.com/ayrat555) + +### Removed + +- Dropped support for Elixir versions below 1.11 + ## [1.1.0] - 2020-04-18 ## Added diff --git a/README.md b/README.md index 5bd80f8..0af6c62 100644 --- a/README.md +++ b/README.md @@ -23,7 +23,7 @@ by adding `cpf` to your list of dependencies in `mix.exs`: ```elixir def deps do [ - {:cpf, "~> 1.0"} + {:cpf, "~> 1.2"} ] end ``` diff --git a/mix.exs b/mix.exs index 051b5d5..f11c431 100644 --- a/mix.exs +++ b/mix.exs @@ -4,7 +4,7 @@ defmodule CPF.MixProject do def project do [ app: :cpf, - version: "1.1.0", + version: "1.2.0", elixir: "~> 1.11", start_permanent: Mix.env() == :prod, description: description(),