Skip to content

Commit

Permalink
Update changelog and readme
Browse files Browse the repository at this point in the history
  • Loading branch information
niwinz committed Apr 10, 2022
1 parent df32b5a commit f6b54d7
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 2 deletions.
5 changes: 5 additions & 0 deletions CHANGES.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
# Changelog #

## 2022.04.11-16

- Rollback some internal cache usage because of race conditions


## 2022.04.07-12

- Schedule change notifications as microtasks.
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
A faster Atom and DerivedAtom impl for clojurescript.

```clojure
{:deps {funcool/okulary {:mvn/version "2022.04.07-12"}}}
{:deps {funcool/okulary {:mvn/version "2022.04.11-16"}}}
```


Expand Down
2 changes: 1 addition & 1 deletion build.clj
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
(:require [clojure.tools.build.api :as b]))

(def lib 'funcool/okulary)
(def version (format "2022.04.07-%s" (b/git-count-revs nil)))
(def version (format "2022.04.11-%s" (b/git-count-revs nil)))
(def class-dir "target/classes")
(def basis (b/create-basis {:project "deps.edn"}))
(def jar-file (format "target/%s-%s.jar" (name lib) version))
Expand Down
1 change: 1 addition & 0 deletions src/okulary/core.cljs
Original file line number Diff line number Diff line change
Expand Up @@ -144,3 +144,4 @@
(derived selector source identical?))
([selector source equals?]
(DerivedAtom. (js/Symbol "okulary") selector source equals? (js/Map.) EMPTY EMPTY)))

0 comments on commit f6b54d7

Please sign in to comment.