diff --git a/CHANGELOG.md b/CHANGELOG.md index b4c4095..68449d0 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,21 @@ # Change Log +## [v0.3.1](https://github.com/abntex/trabalho-academico-limarka/tree/v0.3.1) (2017-02-11) +[Full Changelog](https://github.com/abntex/trabalho-academico-limarka/compare/v0.3.0...v0.3.1) + +**Melhorias implementadas:** + +- Remoção do texto falando sobre imagem latex [\#8](https://github.com/abntex/trabalho-academico-limarka/issues/8) + +## [v0.3.0](https://github.com/abntex/trabalho-academico-limarka/tree/v0.3.0) (2017-02-11) +[Full Changelog](https://github.com/abntex/trabalho-academico-limarka/compare/v0.2.0...v0.3.0) + +**Melhorias implementadas:** + +- Versionamento do modelo [\#5](https://github.com/abntex/trabalho-academico-limarka/issues/5) +- Especificando dependência da versão do limarka [\#7](https://github.com/abntex/trabalho-academico-limarka/issues/7) +- Utilizando nova sintaxe para Figuras [\#6](https://github.com/abntex/trabalho-academico-limarka/issues/6) + ## [v0.2.0](https://github.com/abntex/trabalho-academico-limarka/tree/v0.2.0) (2016-11-25) [Full Changelog](https://github.com/abntex/trabalho-academico-limarka/compare/v0.1.2...v0.2.0) @@ -7,13 +23,6 @@ - Imagens e tabelas apareciam no meio da página em branco [\#1](https://github.com/abntex/trabalho-academico-limarka/issues/1) -## [v0.1.2](https://github.com/abntex/trabalho-academico-limarka/tree/v0.1.2) (2016-11-17) -[Full Changelog](https://github.com/abntex/trabalho-academico-limarka/compare/v0.1.1...v0.1.2) - -## [v0.1.1](https://github.com/abntex/trabalho-academico-limarka/tree/v0.1.1) (2016-11-17) -[Full Changelog](https://github.com/abntex/trabalho-academico-limarka/compare/v0.1.0...v0.1.1) - -## [v0.1.0](https://github.com/abntex/trabalho-academico-limarka/tree/v0.1.0) (2016-11-17) \* *This Change Log was automatically generated by [github_changelog_generator](https://github.com/skywinder/Github-Changelog-Generator)* \ No newline at end of file diff --git a/Rakefile b/Rakefile index 0d8f4a3..82c4419 100644 --- a/Rakefile +++ b/Rakefile @@ -7,7 +7,7 @@ require 'github_changelog_generator/task' task :default => [] -VERSION="v0.3.0" +VERSION="v0.3.1" GitHubChangelogGenerator::RakeTask.new :changelog do |c| c.future_release = VERSION @@ -18,8 +18,10 @@ GitHubChangelogGenerator::RakeTask.new :changelog do |c| end desc "Gera versão #{VERSION}" -task :release do +task :release => [:clean] do + system "limarka" system "git tag -a #{VERSION} -m \"Gerando versão #{VERSION}\"" + system "git push && git push --tags" end PREAMBULO="templates/preambulo.tex"