Skip to content

Commit

Permalink
chore: Bump version
Browse files Browse the repository at this point in the history
  • Loading branch information
daskycodes committed Mar 10, 2022
1 parent 325adb6 commit 40de90d
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 7 deletions.
13 changes: 9 additions & 4 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,15 +5,20 @@ 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.1 (2022-03-10)

- Bug fixes
- Fix UnicodeConversionError by @adriankumpf

## 0.2.0 (2022-01-09)

* Changes
* `is_*` functions have no prefix and end with a question mark, to conform with elixir's conventions
- Changes
- `is_*` functions have no prefix and end with a question mark, to conform with elixir's conventions

## 0.1.1 (2022-01-09)

* Enhancements
* Add AIFF audio file support
- Enhancements
- Add AIFF audio file support

## 0.1.0 (2021-12-26)

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.0"}
{:infer, "~> 0.2.1"}
]
end
```
Expand Down
4 changes: 2 additions & 2 deletions 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.0",
version: "0.2.1",
elixir: "~> 1.10",
elixirc_paths: elixirc_paths(Mix.env()),
start_permanent: Mix.env() == :prod,
Expand Down Expand Up @@ -36,7 +36,7 @@ defmodule Infer.MixProject do
# Run "mix help deps" to learn about dependencies.
defp deps do
[
{:ex_doc, git: "https://github.com/elixir-lang/ex_doc", ref: "a011116", only: :dev, runtime: false}
{:ex_doc, "~> 0.28", only: :dev, runtime: false}
]
end

Expand Down

0 comments on commit 40de90d

Please sign in to comment.