Skip to content

Commit

Permalink
fix: include .formatter.exs in package (again)
Browse files Browse the repository at this point in the history
Accidentally left it out in the 0.5.0 release, breaking
custom formatting for anyone who has upgraded already.
  • Loading branch information
hpopp committed Sep 9, 2024
1 parent c06e73c commit e0199a4
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 3 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ Add commandex as a `mix.exs` dependency:
```elixir
def deps do
[
{:commandex, "~> 0.5.0"}
{:commandex, "~> 0.5.1"}
]
end
```
Expand Down
4 changes: 2 additions & 2 deletions mix.exs
Original file line number Diff line number Diff line change
Expand Up @@ -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
[
Expand Down Expand Up @@ -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",
Expand Down

0 comments on commit e0199a4

Please sign in to comment.