Skip to content

Commit

Permalink
v0.2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
novaugust committed Apr 5, 2023
1 parent d2c70ef commit 7107381
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 2 deletions.
12 changes: 12 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,17 @@
# Changelog

## v0.2.0

### Improvements

* Added `Styler.Style.ModuleDirectives`
* Note that this is potentially destructive in some rare cases. See moduledoc for more.
* `mix style -` reads and writes to stdin/stdout

### Fixes

* `Styler.Style.Pipes` is now aware of `unless` blocks

## v0.1.1

### Improvements
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 @@ Add `:styler` as a dependency to your project's `mix.exs`:
```elixir
def deps do
[
{:styler, "~> 0.1", only: [:dev, :test], runtime: false},
{:styler, "~> 0.2", only: [:dev, :test], runtime: false},
]
end
```
Expand Down
3 changes: 2 additions & 1 deletion mix.exs
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,8 @@
defmodule Styler.MixProject do
use Mix.Project

@version "0.1.1"
# Don't forget to bump the README when doing non-patch version changes
@version "0.2.0"
@url "https://github.com/adobe/elixir-styler"

def project do
Expand Down

0 comments on commit 7107381

Please sign in to comment.