From 92cab305190a5bf22cfb356203732a56ee8e61a0 Mon Sep 17 00:00:00 2001 From: Anatoly Date: Sun, 27 Dec 2015 15:10:22 -0500 Subject: [PATCH 1/2] #32: note about a Clojure version --- README.md | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/README.md b/README.md index 1f4477e..dc94b86 100644 --- a/README.md +++ b/README.md @@ -41,6 +41,7 @@ _**Alan J. Perlis** from [Structure and Interpretation of Computer Programs](htt - [Affected States](#affected-states) - [Recompiling Namespaces with Running States](#recompiling-namespaces-with-running-states) - [Logging](#logging) +- [Clojure Version](#clojure-version) - [Mount and Develop!](#mount-and-develop) - [Running New York Stock Exchange](#running-new-york-stock-exchange) - [New York Stock Exchange Maintenance](#new-york-stock-exchange-maintenance) @@ -468,6 +469,10 @@ Since mount is a _library_ it should _not_ bring any dependencies unless its fun The way this is done is via an excellent [robert hooke](https://github.com/technomancy/robert-hooke/). Example applications live in `test`, so does the [utility](https://github.com/tolitius/mount/blob/75d7cdc610ce38623d4d3aea1da3170d1c9a3b4b/test/app/utils/logging.clj#L44) that adds logging to all the mount's lifecycle functions on start in [dev.clj](https://github.com/tolitius/mount/blob/75d7cdc610ce38623d4d3aea1da3170d1c9a3b4b/dev/dev.clj#L21). +## Clojure Version + +Since `mount` [supports both](doc/clojurescript.md#managing-state-in-clojurescript) Clojure and CljoureScript, it relies on [Reader Conditionals](http://clojure.org/reader#The%20Reader--Reader%20Conditionals) that were introduced in `Clojure 1.7`. `mount`'s code is not precompiled (i.e. AOT) and disributed in `.cljc` sources, hence it currently requires `Clojure 1.7` and above. + ## Mount and Develop! `mount` comes with an example [app](dev/clj/app) From 559ba289878ba16e9daf36809f640595f972bc76 Mon Sep 17 00:00:00 2001 From: Anatoly Date: Sun, 27 Dec 2015 15:12:13 -0500 Subject: [PATCH 2/2] [docs]: formatting --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index dc94b86..b21e45f 100644 --- a/README.md +++ b/README.md @@ -471,7 +471,7 @@ The way this is done is via an excellent [robert hooke](https://github.com/techn ## Clojure Version -Since `mount` [supports both](doc/clojurescript.md#managing-state-in-clojurescript) Clojure and CljoureScript, it relies on [Reader Conditionals](http://clojure.org/reader#The%20Reader--Reader%20Conditionals) that were introduced in `Clojure 1.7`. `mount`'s code is not precompiled (i.e. AOT) and disributed in `.cljc` sources, hence it currently requires `Clojure 1.7` and above. +Since mount [supports both](doc/clojurescript.md#managing-state-in-clojurescript) Clojure and CljoureScript, it relies on [Reader Conditionals](http://clojure.org/reader#The%20Reader--Reader%20Conditionals) that were introduced in `Clojure 1.7`. mount's code is not precompiled (i.e. AOT) and disributed in `.cljc` sources, hence it currently requires `Clojure 1.7` and above. ## Mount and Develop!