Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update README and mix.exs for v0.13.1 release #65

Merged
merged 1 commit into from
May 3, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ Add patch to your mix.exs
```elixir
def deps do
[
{:patch, "~> 0.13.0", only: [:test]}
{:patch, "~> 0.13.1", only: [:test]}
]
end
```
Expand Down Expand Up @@ -202,6 +202,8 @@ Patch is made better everyday by developers requesting new features.
- Improved the ci.yml, brining it up to date with best practices.
- [Dorgan](https://github.com/doorgan)
- Reported erratum in the Patch Cheatsheet
- [Luca Corti](https://github.com/lucacorti)
- Reported an issue with warning being emitted by the library on Elixir 1.16 which served as the basis for a bugfix in v0.13.1

If you have a suggestion for improvements to this library, please open an issue.

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 Patch.MixProject do
def project do
[
app: :patch,
version: "0.13.0",
version: "0.13.1",
elixir: "~> 1.7",
erlc_paths: erlc_paths(Mix.env()),
elixirc_paths: elixirc_paths(Mix.env()),
Expand Down
Loading