diff --git a/CHANGELOG.md b/CHANGELOG.md index bdad1e2..f510479 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,12 @@ 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.5.1] - 2024-09-09 + +### Fixed + +- `import_deps: [:commandex]` in `.formatter.exs` works again. + ## [0.5.0] - 2024-09-08 ### Added diff --git a/README.md b/README.md index 31185f2..3bbf1bd 100644 --- a/README.md +++ b/README.md @@ -19,7 +19,7 @@ Add commandex as a `mix.exs` dependency: ```elixir def deps do [ - {:commandex, "~> 0.5.0"} + {:commandex, "~> 0.5.1"} ] end ``` diff --git a/mix.exs b/mix.exs index 7e40223..6f6d0e0 100644 --- a/mix.exs +++ b/mix.exs @@ -2,7 +2,7 @@ defmodule Commandex.MixProject do use Mix.Project @source_url "https://github.com/codedge-llc/commandex" - @version "0.5.0" + @version "0.5.1" def project do [ @@ -55,7 +55,7 @@ defmodule Commandex.MixProject do defp package do [ description: "Make complex actions a first-class data type.", - files: ["lib", "mix.exs", "README*", "LICENSE*", "CHANGELOG*"], + files: ["lib", "mix.exs", ".formatter.exs", "README*", "LICENSE*", "CHANGELOG*"], licenses: ["MIT"], links: %{ "Changelog" => "https://hexdocs.pm/commandex/changelog.html",