Skip to content

Commit

Permalink
[release] v0.2.5
Browse files Browse the repository at this point in the history
  • Loading branch information
David Jarvis committed Oct 19, 2019
1 parent 11bfbc3 commit 48ad342
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 4 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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.

Expand Down
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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] ...)})
```

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 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"
Expand Down

0 comments on commit 48ad342

Please sign in to comment.