Skip to content

Commit

Permalink
Updated version numbers
Browse files Browse the repository at this point in the history
  • Loading branch information
Engelberg committed Sep 23, 2017
1 parent b6f143e commit 60a7040
Show file tree
Hide file tree
Showing 3 changed files with 16 additions and 10 deletions.
6 changes: 6 additions & 0 deletions CHANGES.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# Instaparse Change Log

## 1.4.8

### Updates

* Update to support Clojurescript 1.9.854 and above, due to a breaking change in Clojurescript to use tools.reader.

## 1.4.7

### Enhancements
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Instaparse 1.4.7
# Instaparse 1.4.8

*What if context-free grammars were as easy to use as regular expressions?*

Expand All @@ -22,7 +22,7 @@ Instaparse requires Clojure v1.5.1 or later, or ClojureScript v1.7.28 or later.

Add the following line to your leiningen dependencies:

[instaparse "1.4.7"]
[instaparse "1.4.8"]

Require instaparse in your namespace header:

Expand Down
16 changes: 8 additions & 8 deletions project.clj
Original file line number Diff line number Diff line change
@@ -1,22 +1,22 @@
(defproject instaparse "1.4.7"
(defproject instaparse "1.4.8"
:description "Instaparse: No grammar left behind"
:url "https://github.com/Engelberg/instaparse"
:license {:name "Eclipse Public License"
:url "http://www.eclipse.org/legal/epl-v10.html"}
:dependencies [[org.clojure/clojure "1.8.0"]]
:profiles {:dev {:dependencies
:profiles {:dev {:dependencies
[[org.clojure/clojurescript "1.8.40"]
[org.clojure/tools.trace "0.7.5"]
[criterium "0.3.1"]
[rhizome "0.2.5"]]}
[org.clojure/tools.trace "0.7.9"]
[criterium "0.4.4"]
[rhizome "0.2.9"]]}
:1.5 {:dependencies [[org.clojure/clojure "1.5.1"]]}
:1.6 {:dependencies [[org.clojure/clojure "1.6.0"]]}
:1.7 {:dependencies [[org.clojure/clojure "1.7.0"]
[org.clojure/clojurescript "1.7.28"]]}
:1.8 {:dependencies [[org.clojure/clojure "1.8.0"]
[org.clojure/clojurescript "1.8.34"]]}
:1.9 {:dependencies [[org.clojure/clojure "1.9.0-alpha16"]
[org.clojure/clojurescript "1.9.854"]
:1.9 {:dependencies [[org.clojure/clojure "1.9.0-alpha19"]
[org.clojure/clojurescript "1.9.908"]
[org.clojure/tools.reader "1.0.3"]]}}
:aliases {"test-all" ["with-profile" "+1.5:+1.6:+1.7:+1.8:+1.9" "test"]
"test-cljs" ["cljsbuild" "test" "unit-tests"]
Expand All @@ -29,7 +29,7 @@
{:source-paths ["test/"]
:output-path "target/generated/test/clj"
:rules :clj}]}
:plugins [[lein-cljsbuild "1.1.5"]
:plugins [[lein-cljsbuild "1.1.7"]
[cljsee "0.1.0"]]
;:hooks [leiningen.cljsbuild]
:target-path "target"
Expand Down

0 comments on commit 60a7040

Please sign in to comment.