From ba814b86b84bbbdfa4f6a80605bba568c19b444d Mon Sep 17 00:00:00 2001 From: Brujo Benavides Date: Thu, 21 Nov 2019 11:32:58 -0300 Subject: [PATCH] Add CHANGELOG and bump version to 0.0.2 (#28) --- CHANGELOG.md | 46 +++++++++++++++++++++++++++++++++++++++ priv/overview.edoc | 1 - src/rebar3_format.app.src | 2 +- 3 files changed, 47 insertions(+), 2 deletions(-) create mode 100644 CHANGELOG.md diff --git a/CHANGELOG.md b/CHANGELOG.md new file mode 100644 index 0000000..1d267f7 --- /dev/null +++ b/CHANGELOG.md @@ -0,0 +1,46 @@ +# Changelog + +## [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) + +**Fixed bugs:** + +- Unicode support is not 100% bulletproof [\#11](https://github.com/AdRoll/rebar3_format/issues/11) + +**Closed issues:** + +- Publish the lib to hex.pm [\#9](https://github.com/AdRoll/rebar3_format/issues/9) +- 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:** + +- 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)) + +## [0.0.1](https://github.com/AdRoll/rebar3_format/tree/0.0.1) (2019-11-09) + +[Full Changelog](https://github.com/AdRoll/rebar3_format/compare/d9d137456067a952cbb83c4fbbe09948726c81be...0.0.1) + +**Fixed bugs:** + +- Fix make compile target [\#13](https://github.com/AdRoll/rebar3_format/issues/13) + +**Merged pull requests:** + +- \#13 Fix make compile target [\#14](https://github.com/AdRoll/rebar3_format/pull/14) ([diegomanuel](https://github.com/diegomanuel)) +- use AdRoll dependency [\#4](https://github.com/AdRoll/rebar3_format/pull/4) ([juanbono](https://github.com/juanbono)) +- Fix 52 ensure unicode works [\#3](https://github.com/AdRoll/rebar3_format/pull/3) ([juanbono](https://github.com/juanbono)) +- Adjustments for rebar3\_prettypr [\#1](https://github.com/AdRoll/rebar3_format/pull/1) ([diegomanuel](https://github.com/diegomanuel)) + + + +\* *This Changelog was automatically generated by [github_changelog_generator](https://github.com/github-changelog-generator/github-changelog-generator)* diff --git a/priv/overview.edoc b/priv/overview.edoc index 17bb01d..0fb74d9 100644 --- a/priv/overview.edoc +++ b/priv/overview.edoc @@ -5,7 +5,6 @@ @author Diego @author Carlos @copyright (c) 2019 NextRoll Inc. -@version 0.0.1 @title The Erlang Formatter @doc This project provides a rebar3 plugin to use the rebar3 format command. @reference See Our README for more information. diff --git a/src/rebar3_format.app.src b/src/rebar3_format.app.src index e376578..8ee2777 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.1"}, + {vsn, "0.0.2"}, {registered, []}, {applications, [kernel, stdlib]}, {env, []},