Skip to content

Commit

Permalink
new version: excluding com.fzakaria/slf4j-timbre in project definitio…
Browse files Browse the repository at this point in the history
…n; removing the delay in listen moded
  • Loading branch information
daslu committed Aug 16, 2021
1 parent 6c5af05 commit 9c8186f
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 3 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,10 @@
# Change Log
All notable changes to this project will be documented in this file. This change log follows the conventions of [keepachangelog.com](http://keepachangelog.com/).

## [3-beta7] - 2021-06-15
- excluding com.fzakaria/slf4j-timbre in project definition
- removing the delay in listen mode

## [3-beta7] - 2021-06-14
- updated gorilla-notes version, where static rendering works differently: the client side bundle is a file living alongside the html document, rather than downloaded from a cdn

Expand Down
6 changes: 4 additions & 2 deletions project.clj
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
(defproject scicloj/notespace "3-beta7"
(defproject scicloj/notespace "3-beta8"
:description "Notebook experience in your Clojure namespace."
:url "http://github.com/scicloj/notespace"
:license {:name "EPL-2.0 OR GPL-2.0-or-later WITH Classpath-exception-2.0"
Expand All @@ -16,7 +16,8 @@
[scicloj/gorilla-notes "0.5.13"
:exclusions [com.fasterxml.jackson.core/jackson-core
com.fasterxml.jackson.dataformat/jackson-dataformat-cbor
com.fasterxml.jackson.dataformat/jackson-dataformat-smile]]
com.fasterxml.jackson.dataformat/jackson-dataformat-smile
com.fzakaria/slf4j-timbre]]
[com.fasterxml.jackson.core/jackson-core "2.10.0"]
[com.fasterxml.jackson.core/jackson-annotations "2.10.0"]
[com.fasterxml.jackson.dataformat/jackson-dataformat-cbor "2.10.0"]
Expand All @@ -25,3 +26,4 @@
:dependencies [[midje "1.9.9"]]
:plugins [[lein-midje "3.2.1"]
[lein-cloverage "1.1.2"]]}})

2 changes: 1 addition & 1 deletion src/notespace/api.clj
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,7 @@
(swap! namespaces-listening-to-changes #(remove #{anamespace} %))))

(defonce listen-sleep
(atom 300))
(atom 0))

(defonce periodically-react-to-changes
(future
Expand Down

0 comments on commit 9c8186f

Please sign in to comment.