diff --git a/CHANGELOG.md b/CHANGELOG.md index 7697295..509298a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -8,6 +8,11 @@ This project adheres to [Semantic Versioning](http://semver.org/). ## [Unreleased] +... + + +## [0.11.0] - 2020-01-21 + ### Added - Var definitions (using `def`) have line-break rules, constrolled by `:line-break-vars?`. @@ -162,7 +167,8 @@ functionality. Legacy project release. -[Unreleased]: https://github.com/greglook/cljstyle/compare/0.10.1...HEAD +[Unreleased]: https://github.com/greglook/cljstyle/compare/0.11.0...HEAD +[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 [0.10.0]: https://github.com/greglook/cljstyle/compare/0.9.0...0.10.0 [0.9.0]: https://github.com/greglook/cljstyle/compare/0.8.3...0.9.0 diff --git a/core/project.clj b/core/project.clj index 9a27362..58da30a 100644 --- a/core/project.clj +++ b/core/project.clj @@ -1,4 +1,4 @@ -(defproject mvxcvi/cljstyle "0.10.2-SNAPSHOT" +(defproject mvxcvi/cljstyle "0.11.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 4a25494..1d7b8c0 100644 --- a/tool/project.clj +++ b/tool/project.clj @@ -1,4 +1,4 @@ -(defproject mvxcvi/cljstyle-tool "0.10.2-SNAPSHOT" +(defproject mvxcvi/cljstyle-tool "0.11.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.10.2-SNAPSHOT"]] + [mvxcvi/cljstyle "0.11.0"]] :main cljstyle.tool.main