diff --git a/CHANGELOG.md b/CHANGELOG.md index 99fdf7c..b2bdd19 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,19 @@ +## v2.0.2 / 2014-Jan-19 + +This is a **backwards compatible bug fix release**. Recommended upgrade. + +### Features + * `normalize` fn now takes optional normalization form. + +### Changes + None. + +## Fixes + * [unreported] broken `fmt-fn` argument for translate fn. + * [unreported] fallback locales should have `locale-key` called on their locale. + * [#37] broken `t` parent fallback for empty child locales. + + ## v2.0.0 → v2.0.1 Minor, non-breaking release: **2013 Nov 26**. diff --git a/README.md b/README.md index 5ae73a5..cf13a50 100644 --- a/README.md +++ b/README.md @@ -1,7 +1,7 @@ **[API docs](http://ptaoussanis.github.io/tower/)** | **[CHANGELOG](https://github.com/ptaoussanis/tower/blob/master/CHANGELOG.md)** | [contact & contributing](#contact--contributing) | [other Clojure libs](https://www.taoensso.com/clojure-libraries) | [Twitter](https://twitter.com/#!/ptaoussanis) | current [semantic](http://semver.org/) version: ```clojure -[com.taoensso/tower "2.0.1"] ; Stable, see CHANGELOG for details +[com.taoensso/tower "2.0.2"] ; Stable, see CHANGELOG for details ``` v2 provides an improved API. It is a **BREAKING** release for `t` users. See the [CHANGELOG](https://github.com/ptaoussanis/tower/blob/master/CHANGELOG.md) for migration details. Note that the examples in this README are for the v2 API. See [here](https://github.com/ptaoussanis/tower/blob/master/v1-examples.md) for v1 examples. @@ -31,7 +31,7 @@ Tower's an attempt to present a **simple, idiomatic internationalization and loc Add the necessary dependency to your [Leiningen](http://leiningen.org/) `project.clj` and `require` the library in your ns: ```clojure -[com.taoensso/tower "2.0.1"] ; project.clj +[com.taoensso/tower "2.0.2"] ; project.clj (ns my-app (:require [taoensso.tower :as tower :refer (with-locale with-tscope t *locale*)])) ; ns ``` diff --git a/project.clj b/project.clj index 27f04d4..ac29ef5 100644 --- a/project.clj +++ b/project.clj @@ -1,4 +1,4 @@ -(defproject com.taoensso/tower "2.0.1" +(defproject com.taoensso/tower "2.0.2" :description "Clojure i18n & L10n library" :url "https://github.com/ptaoussanis/tower" :license {:name "Eclipse Public License"