diff --git a/CHANGELOG.md b/CHANGELOG.md index e4a6af8..b6d9d52 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,6 @@ +0.2.5 + * Fix a bug in `prevent-reload-on-known-path` + 0.2.4 * Add support for triggering event dispatch when navigating to the same page. diff --git a/README.md b/README.md index cda3a17..89180a2 100644 --- a/README.md +++ b/README.md @@ -22,7 +22,7 @@ browsers will be left behind. Just add the following to your `project.clj`: ```clojure -:dependencies [venantius/accountant "0.2.4"] +:dependencies [venantius/accountant "0.2.5"] ``` ## Usage @@ -33,8 +33,8 @@ All you have to do to get Accountant working is the following: (ns your-app-ns (:require [accountant.core :as accountant])) -(accountant/configure-navigation! - {:nav-handler (fn [path] ...) +(accountant/configure-navigation! + {:nav-handler (fn [path] ...) :path-exists? (fn [path] ...)}) ``` diff --git a/project.clj b/project.clj index d1ba238..371ddae 100644 --- a/project.clj +++ b/project.clj @@ -1,4 +1,4 @@ -(defproject venantius/accountant "0.2.4" +(defproject venantius/accountant "0.2.5" :description "Navigation for Single-Page Applications Made Easy." :url "http://github.com/venantius/accountant" :license {:name "Eclipse Public License"