diff --git a/CHANGELOG.md b/CHANGELOG.md index 8b99996..ea76e26 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,17 +1,21 @@ # Change Log All notable changes to this project will be documented in this file. This change log follows the conventions of [keepachangelog.com](http://keepachangelog.com/). -## 0.1.4 - 2018-0922 +## 0.1.5 - 2018-0922 ### Added Mainly documentation and tidy-up; Beta release. +[0.1.5]: https://github.com/simon_brooke/adl-support/compare/0.1.4...0.1.5 + ## 0.1.4 - 2018-09-20 This is not anticipated to be the actual Beta release; it's a dummy run to test the release and deployment process. Some required features are still missing. +[0.1.4]: https://github.com/simon_brooke/adl-support/compare/0.1.0...0.1.4 + ## 0.1.0 - 2018-06-17 ### Added Initial release. -[Unreleased]: https://github.com/your-name/adl-support/compare/0.1.1...HEAD -[0.1.1]: https://github.com/your-name/adl-support/compare/0.1.0...0.1.1 +[Unreleased]: https://github.com/simon_brooke/adl-support/compare/0.1.1...HEAD +[0.1.1]: https://github.com/simon_brooke/adl-support/compare/0.1.0...0.1.1 diff --git a/project.clj b/project.clj index 6604abc..d0179d8 100644 --- a/project.clj +++ b/project.clj @@ -5,10 +5,10 @@ :url "https://opensource.org/licenses/MIT"} :dependencies [[org.clojure/clojure "1.8.0"] - [org.clojure/core.memoize "0.7.1"] + [org.clojure/core.memoize "0.8.2"] [org.clojure/math.numeric-tower "0.0.4"] - [org.clojure/tools.logging "0.4.1"] - [selmer "1.11.8"]] + [org.clojure/tools.logging "0.5.0"] + [selmer "1.12.17"]] :plugins [[lein-codox "0.10.4"] [lein-release "1.0.5"]] diff --git a/src/adl_support/utils.clj b/src/adl_support/utils.clj index 2b12ead..d8b233e 100644 --- a/src/adl_support/utils.clj +++ b/src/adl_support/utils.clj @@ -261,7 +261,7 @@ (s/join " " (map - #(apply str (cons (Character/toUpperCase (first %)) (rest %))) + s/capitalize (s/split s #"[^a-zA-Z0-9]+"))) s))