Skip to content

Commit

Permalink
bump to 3.3.0 + changelog
Browse files Browse the repository at this point in the history
  • Loading branch information
martinklepsch committed Jul 27, 2021
1 parent 1f5b304 commit 2011fd1
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 2 deletions.
9 changes: 9 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,12 @@
## 3.3.0

- Allow full customization of event handling via a new `:citrus/handler` option
that allows you to replace the standard controller/multimethod-based event
handling.
- See the [full documentation on custom handlers](https://github.com/clj-commons/citrus/blob/master/doc/custom-handler.md)
- or see [the tests](https://github.com/clj-commons/citrus/blob/master/test/citrus/custom_handler_test.cljs) for a concise example.
- This change is intended to be **fully backwards compatible**, please open an issue if you encounter any problems.

## 3.2.3
- Don't evaluate default-batched-updates until necessary 0788a7f10

Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ Have a simple, [re-frame](https://github.com/Day8/re-frame) like state managemen
- [“Real world” example app](https://github.com/roman01la/cljs-rum-realworld-example-app)

## Installation
Add to *project.clj* / *build.boot*: `[clj-commons/citrus "3.2.3"]`
Add to *project.clj* / *build.boot*: `[clj-commons/citrus "3.3.0"]`

## Usage
```clojure
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 clj-commons/citrus (or (System/getenv "PROJECT_VERSION") "3.2.3")
(defproject clj-commons/citrus (or (System/getenv "PROJECT_VERSION") "3.3.0")
:description "State management library for Rum"
:url "https://github.com/clj-commons/citrus"
:license {:name "Eclipse Public License"
Expand Down

1 comment on commit 2011fd1

@nickpell
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

👍

Please sign in to comment.