diff --git a/CHANGELOG.md b/CHANGELOG.md index e26f269..0c75934 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,14 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). +## 0.2.5 (2023-11-23) + +- Bug fixes + - Fix `matcher_fun` typespec as it caused dialyzer to fail by @smaximov + - Improve `get_from_path/1,2` to return `nil` instead of an error tuple on an invalid path + and fix a possible leaking descriptor by @smaximov + - Use `import Bitwise` + ## 0.2.4 (2022-03-10) - Bug fixes diff --git a/README.md b/README.md index c6d0edf..8ac7f36 100644 --- a/README.md +++ b/README.md @@ -12,7 +12,7 @@ by adding `infer` to your list of dependencies in `mix.exs`: ```elixir def deps do [ - {:infer, "~> 0.2.4"} + {:infer, "~> 0.2.5"} ] end ``` diff --git a/mix.exs b/mix.exs index ee1e485..aef19d4 100644 --- a/mix.exs +++ b/mix.exs @@ -4,7 +4,7 @@ defmodule Infer.MixProject do def project do [ app: :infer, - version: "0.2.4", + version: "0.2.5", elixir: "~> 1.10", elixirc_paths: elixirc_paths(Mix.env()), start_permanent: Mix.env() == :prod,