diff --git a/CHANGELOG.md b/CHANGELOG.md index acb92e9..05a5340 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,20 @@ # Changelog +## 0.8.0 (2018-04-19) + +**[compare](https://github.com/reagent-project/reagent/compare/v0.8.0-rc1...v0.8.0)** + +- Reagent documentation is now maintained as part of the repository, in [docs](./docs) folder. +- Default to React 16 +- Apply vector metadata to the outermost element when using nesting shorthand ([#262](https://github.com/reagent-project/reagent/issues/262)) +- Add `:<>` shorthand for [React Fragments](https://reactjs.org/docs/fragments.html) ([#352](https://github.com/reagent-project/reagent/pull/352)]) +- Fix `:class` property with custom elements ([#322](https://github.com/reagent-project/reagent/issues/322)) +- `:class` property now supports collections of strings ([#154](https://github.com/reagent-project/reagent/pull/154)) +- Added `IWithMeta` to `RAtom` ([#314](https://github.com/reagent-project/reagent/pull/314)) +- Support for using Reagent together with React from npm + +#### Read [0.8 upgrade guide](./docs/0.8-upgrade.md) for more information. + ## 0.8.0-rc1 (2018-04-11) **[compare](https://github.com/reagent-project/reagent/compare/v0.8.0-alpha2...v0.8.0-rc1)** diff --git a/demo/reagentdemo/news.cljs b/demo/reagentdemo/news.cljs index 68205c7..761399d 100644 --- a/demo/reagentdemo/news.cljs +++ b/demo/reagentdemo/news.cljs @@ -13,6 +13,9 @@ (defn main [] [:div + [:div.reagent-demo + [:h1 [:a {:href "https://github.com/reagent-project/reagent/blob/master/CHANGELOG.md#080-2018-04-19"} "Reagent 0.8.0"]] + [:span "2018-04-19"]] [:div.reagent-demo [:h1 [:a {:href "https://github.com/reagent-project/reagent/blob/master/CHANGELOG.md#070-2017-06-27"} "Reagent 0.7.0"]] [:span "2017-06-27"]] diff --git a/project.clj b/project.clj index d5497ad..d5bf217 100644 --- a/project.clj +++ b/project.clj @@ -1,4 +1,4 @@ -(defproject reagent "0.8.0-rc1" +(defproject reagent "0.8.0" :url "http://github.com/reagent-project/reagent" :license {:name "MIT"} :description "A simple ClojureScript interface to React"