Skip to content

Commit ae9502b

Browse files
authored
fix: include .formatter.exs in package (again) (#15)
* fix: include .formatter.exs in package (again) Accidentally left it out in the 0.5.0 release, breaking custom formatting for anyone who has upgraded already. * docs: update CHANGELOG with PR link
1 parent c06e73c commit ae9502b

3 files changed

Lines changed: 9 additions & 3 deletions

File tree

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,12 @@ All notable changes to this project will be documented in this file.
55
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
66
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
77

8+
## [0.5.1] - 2024-09-09
9+
10+
### Fixed
11+
12+
- `import_deps: [:commandex]` in `.formatter.exs` works again. ([#15](https://github.com/codedge-llc/commandex/pull/15))
13+
814
## [0.5.0] - 2024-09-08
915

1016
### Added

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ Add commandex as a `mix.exs` dependency:
1919
```elixir
2020
def deps do
2121
[
22-
{:commandex, "~> 0.5.0"}
22+
{:commandex, "~> 0.5.1"}
2323
]
2424
end
2525
```

mix.exs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ defmodule Commandex.MixProject do
22
use Mix.Project
33

44
@source_url "https://github.com/codedge-llc/commandex"
5-
@version "0.5.0"
5+
@version "0.5.1"
66

77
def project do
88
[
@@ -55,7 +55,7 @@ defmodule Commandex.MixProject do
5555
defp package do
5656
[
5757
description: "Make complex actions a first-class data type.",
58-
files: ["lib", "mix.exs", "README*", "LICENSE*", "CHANGELOG*"],
58+
files: ["lib", "mix.exs", ".formatter.exs", "README*", "LICENSE*", "CHANGELOG*"],
5959
licenses: ["MIT"],
6060
links: %{
6161
"Changelog" => "https://hexdocs.pm/commandex/changelog.html",

0 commit comments

Comments
 (0)