Skip to content

Commit

Permalink
Bump version to 0.2.5
Browse files Browse the repository at this point in the history
  • Loading branch information
daskycodes committed Nov 23, 2023
1 parent 19a1b49 commit 747bcac
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 2 deletions.
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
```
Expand Down
2 changes: 1 addition & 1 deletion mix.exs
Original file line number Diff line number Diff line change
Expand Up @@ -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,
Expand Down

0 comments on commit 747bcac

Please sign in to comment.