From 71073816dd8d1ba4aff1100f9e5a0c3f57e77a84 Mon Sep 17 00:00:00 2001 From: Matt Enlow Date: Wed, 5 Apr 2023 12:17:42 -0600 Subject: [PATCH] v0.2.0 --- CHANGELOG.md | 12 ++++++++++++ README.md | 2 +- mix.exs | 3 ++- 3 files changed, 15 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index b5da0674..0b148581 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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 diff --git a/README.md b/README.md index 9d44f173..26943303 100644 --- a/README.md +++ b/README.md @@ -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 ``` diff --git a/mix.exs b/mix.exs index ded1afac..f710b3ac 100644 --- a/mix.exs +++ b/mix.exs @@ -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