diff --git a/CHANGELOG.md b/CHANGELOG.md index 1d267f7..25978e4 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,20 @@ # Changelog +## [0.0.3](https://github.com/AdRoll/rebar3_format/tree/0.0.3) (2019-12-12) + +[Full Changelog](https://github.com/AdRoll/rebar3_format/compare/0.0.2...0.0.3) + +**Closed issues:** + +- Consider using ktn\_dodger instead of epp\_dodger for parsing [\#25](https://github.com/AdRoll/rebar3_format/issues/25) + +**Merged pull requests:** + +- Update README.md [\#38](https://github.com/AdRoll/rebar3_format/pull/38) ([msantos](https://github.com/msantos)) +- \[\#25\] Replace epp\_dodger with ktn\_dodger [\#35](https://github.com/AdRoll/rebar3_format/pull/35) ([juanbono](https://github.com/juanbono)) +- Add support for preserving empty lines [\#31](https://github.com/AdRoll/rebar3_format/pull/31) ([juanbono](https://github.com/juanbono)) +- Some changes to the new script to fit in hex.pm [\#29](https://github.com/AdRoll/rebar3_format/pull/29) ([elbrujohalcon](https://github.com/elbrujohalcon)) + ## [0.0.2](https://github.com/AdRoll/rebar3_format/tree/0.0.2) (2019-11-21) [Full Changelog](https://github.com/AdRoll/rebar3_format/compare/0.0.1...0.0.2) @@ -11,18 +26,20 @@ **Closed issues:** - Publish the lib to hex.pm [\#9](https://github.com/AdRoll/rebar3_format/issues/9) +- Add CHANGELOG.md [\#8](https://github.com/AdRoll/rebar3_format/issues/8) - Indent using whitespaces and tabs [\#7](https://github.com/AdRoll/rebar3_format/issues/7) - Apply formatter to itself [\#2](https://github.com/AdRoll/rebar3_format/issues/2) **Merged pull requests:** +- Fixes 2: Apply the formatter to its own code [\#18](https://github.com/AdRoll/rebar3_format/pull/18) ([elbrujohalcon](https://github.com/elbrujohalcon)) +- Ready to be published on hex.pm [\#17](https://github.com/AdRoll/rebar3_format/pull/17) ([elbrujohalcon](https://github.com/elbrujohalcon)) +- Fix \#8: Add CHANGELOG and bump version to 0.0.2 [\#28](https://github.com/AdRoll/rebar3_format/pull/28) ([elbrujohalcon](https://github.com/elbrujohalcon)) - Fix \#7: Allow indentation with spaces only [\#27](https://github.com/AdRoll/rebar3_format/pull/27) ([elbrujohalcon](https://github.com/elbrujohalcon)) - Allow configuration of indent sizes [\#26](https://github.com/AdRoll/rebar3_format/pull/26) ([elbrujohalcon](https://github.com/elbrujohalcon)) - Fix 21: Complete coverage on rebar3\_prettypr [\#23](https://github.com/AdRoll/rebar3_format/pull/23) ([elbrujohalcon](https://github.com/elbrujohalcon)) - Use CT for tests [\#20](https://github.com/AdRoll/rebar3_format/pull/20) ([elbrujohalcon](https://github.com/elbrujohalcon)) - Format the code for rebar3\_format on make test [\#19](https://github.com/AdRoll/rebar3_format/pull/19) ([elbrujohalcon](https://github.com/elbrujohalcon)) -- Fixes 2: Apply the formatter to its own code [\#18](https://github.com/AdRoll/rebar3_format/pull/18) ([elbrujohalcon](https://github.com/elbrujohalcon)) -- Ready to be published on hex.pm [\#17](https://github.com/AdRoll/rebar3_format/pull/17) ([elbrujohalcon](https://github.com/elbrujohalcon)) - Add the project to TravisCI [\#16](https://github.com/AdRoll/rebar3_format/pull/16) ([elbrujohalcon](https://github.com/elbrujohalcon)) - Remove hook support from rebar3\_prettypr [\#15](https://github.com/AdRoll/rebar3_format/pull/15) ([elbrujohalcon](https://github.com/elbrujohalcon)) diff --git a/src/rebar3_format.app.src b/src/rebar3_format.app.src index df3bc2f..7fe026e 100644 --- a/src/rebar3_format.app.src +++ b/src/rebar3_format.app.src @@ -1,6 +1,6 @@ {application, rebar3_format, [ {description, "A rebar plugin for code formatting"}, - {vsn, "0.0.2"}, + {vsn, "0.0.3"}, {registered, []}, {applications, [kernel, stdlib, katana_code]}, {env, []},