Skip to content

Commit

Permalink
v2.0.2
Browse files Browse the repository at this point in the history
  • Loading branch information
ptaoussanis committed Jan 19, 2014
1 parent 0340c30 commit ef500be
Show file tree
Hide file tree
Showing 3 changed files with 19 additions and 3 deletions.
16 changes: 16 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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**.
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -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.
Expand Down Expand Up @@ -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
```
Expand Down
2 changes: 1 addition & 1 deletion project.clj
Original file line number Diff line number Diff line change
@@ -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"
Expand Down

0 comments on commit ef500be

Please sign in to comment.