diff --git a/CHANGELOG.md b/CHANGELOG.md index b5f21bc..196ba2a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -8,6 +8,11 @@ This project adheres to [Semantic Versioning](http://semver.org/). ## [Unreleased] +... + + +## [0.12.0] - 2020-02-07 + ### Added - The tool accepts a `--report` option which will cause the execution stats to be printed at the end of a run. @@ -19,6 +24,8 @@ This project adheres to [Semantic Versioning](http://semver.org/). - Many performance optimizations across the formatting rules. - Bug causing a `NullPointerException` when formatting type methods with empty bodies. +- Lines following comments are indented correctly now. + [#32](//github.com/greglook/cljstyle/pull/32) ## [0.11.1] - 2020-01-22 @@ -188,7 +195,8 @@ functionality. Legacy project release. -[Unreleased]: https://github.com/greglook/cljstyle/compare/0.11.1...HEAD +[Unreleased]: https://github.com/greglook/cljstyle/compare/0.12.0...HEAD +[0.12.0]: https://github.com/greglook/cljstyle/compare/0.11.1...0.12.0 [0.11.1]: https://github.com/greglook/cljstyle/compare/0.11.0...0.11.1 [0.11.0]: https://github.com/greglook/cljstyle/compare/0.10.1...0.11.0 [0.10.1]: https://github.com/greglook/cljstyle/compare/0.10.0...0.10.1 diff --git a/core/project.clj b/core/project.clj index 5de351a..f60ec7c 100644 --- a/core/project.clj +++ b/core/project.clj @@ -1,4 +1,4 @@ -(defproject mvxcvi/cljstyle "0.11.2-SNAPSHOT" +(defproject mvxcvi/cljstyle "0.12.0" :description "A library for formatting Clojure code" :url "https://github.com/greglook/cljstyle" :scm {:dir ".."} diff --git a/tool/project.clj b/tool/project.clj index e3e3cc8..a04acf1 100644 --- a/tool/project.clj +++ b/tool/project.clj @@ -1,4 +1,4 @@ -(defproject mvxcvi/cljstyle-tool "0.11.2-SNAPSHOT" +(defproject mvxcvi/cljstyle-tool "0.12.0" :description "An executable tool for running cljstyle." :url "https://github.com/greglook/cljstyle" :scm {:dir ".."} @@ -8,7 +8,7 @@ :dependencies [[org.clojure/clojure "1.9.0"] [org.clojure/tools.cli "0.4.2"] - [mvxcvi/cljstyle "0.11.2-SNAPSHOT"]] + [mvxcvi/cljstyle "0.12.0"]] :main cljstyle.tool.main