diff --git a/CHANGELOG.md b/CHANGELOG.md index dc04bc2c..187a8209 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,16 @@ # CHANGELOG +## 0.4.0 + +### Improvements + +- Added linter check for non-reactive usage of re-frame subscriptions in UIx components via re-frame API [071650](https://github.com/pitch-io/uix/commit/0716507b6bfdcb28091879ef14958aae4300c751) + +### Docs + +- Added a section on [“Syncing with ratoms and re-frame”](https://github.com/pitch-io/uix/blob/master/docs/interop-with-reagent.md#syncing-with-ratoms-and-re-frame) +- Added a section about [“Utilities”](https://github.com/pitch-io/uix/blob/master/docs/utilities.md) + ## 0.3.0 ### Improvements diff --git a/README.md b/README.md index cc89578f..8329c40e 100644 --- a/README.md +++ b/README.md @@ -19,8 +19,8 @@ yarn add react@17.0.2 react-dom@17.0.2 ``` ```clj -{:deps {com.pitch/uix.core {:mvn/version "0.3.0"} - com.pitch/uix.dom {:mvn/version "0.3.0"}}} +{:deps {com.pitch/uix.core {:mvn/version "0.4.0"} + com.pitch/uix.dom {:mvn/version "0.4.0"}}} ``` ## Usage @@ -72,6 +72,7 @@ _Note: to ensure you're using the right Node.js version, you can use [nvm](https once in the directory. Otherwise the Node.js version you use is in the `.nvmrc` file. See nvm repo for more documentation._ ## Thanks to + - [UIx v1](https://github.com/roman01la/uix) for initial set of ideas and learnings - [Helix](https://github.com/lilactown/helix) for even more ideas - [Pitch](https://github.com/pitch-io) for sponsoring and dogfooding the work diff --git a/core/release.edn b/core/release.edn index 3a1da254..7373d97d 100644 --- a/core/release.edn +++ b/core/release.edn @@ -1,4 +1,4 @@ {:group-id "com.pitch" :artifact-id "uix.core" - :version "0.3.0" + :version "0.4.0" :scm-url "https://github.com/pitch-io/uix/tree/master/core"} diff --git a/dom/release.edn b/dom/release.edn index 3499991e..edaee80f 100644 --- a/dom/release.edn +++ b/dom/release.edn @@ -1,4 +1,4 @@ {:group-id "com.pitch" :artifact-id "uix.dom" - :version "0.3.0" + :version "0.4.0" :scm-url "https://github.com/pitch-io/uix/tree/master/dom"}