Skip to content

Commit 48ad342

Browse files
author
David Jarvis
committed
[release] v0.2.5
1 parent 11bfbc3 commit 48ad342

File tree

3 files changed

+7
-4
lines changed

3 files changed

+7
-4
lines changed

CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
0.2.5
2+
* Fix a bug in `prevent-reload-on-known-path`
3+
14
0.2.4
25
* Add support for triggering event dispatch when navigating to the same page.
36

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ browsers will be left behind.
2222
Just add the following to your `project.clj`:
2323

2424
```clojure
25-
:dependencies [venantius/accountant "0.2.4"]
25+
:dependencies [venantius/accountant "0.2.5"]
2626
```
2727

2828
## Usage
@@ -33,8 +33,8 @@ All you have to do to get Accountant working is the following:
3333
(ns your-app-ns
3434
(:require [accountant.core :as accountant]))
3535

36-
(accountant/configure-navigation!
37-
{:nav-handler (fn [path] ...)
36+
(accountant/configure-navigation!
37+
{:nav-handler (fn [path] ...)
3838
:path-exists? (fn [path] ...)})
3939
```
4040

project.clj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
(defproject venantius/accountant "0.2.4"
1+
(defproject venantius/accountant "0.2.5"
22
:description "Navigation for Single-Page Applications Made Easy."
33
:url "http://github.com/venantius/accountant"
44
:license {:name "Eclipse Public License"

0 commit comments

Comments
 (0)