diff --git a/CHANGELOG.md b/CHANGELOG.md index 3d9ea89a0..ad7afd01a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,14 @@ See [MUI changelog](https://github.com/mui-org/material-ui/blob/master/CHANGELOG.md) for changes in MUI. +## 5.4.3-0 + +**[compare](https://github.com/arttuka/reagent-material-ui/compare/v5.2.4-0...v5.4.3-0)** + +- Update MUI to v5.4.3 +- Use local timezone instead of UTC by default in `reagent-mui/cljs-time-adapter` (#30) @patapizza +- Allow string as component in `reagent-mui.styles/styled` + ## 5.2.4-0 **[compare](https://github.com/arttuka/reagent-material-ui/compare/v5.0.0-0...v5.2.4-0)** diff --git a/README.md b/README.md index 0e143ae5c..c27a68ba3 100644 --- a/README.md +++ b/README.md @@ -15,7 +15,7 @@ Their examples are very good. and this library tries to follow the original idea To add MUI to an existing Reagent project, just add this library to your dependencies: ``` -[arttuka/reagent-material-ui "5.2.4-0"] +[arttuka/reagent-material-ui "5.4.3-0"] ``` Most of the library is in the form of regular Reagent components. Each component is contained in a namespace that mirrors @@ -60,7 +60,7 @@ They can't be used in projects with CLJSJS sources. To use npm dependencies with Figwheel Main, you need to exclude prebuilt JS files (React from CLJSJS and MUI from this library). To do so, add these exclusions to your dependency. See the example project for working configuration. - [arttuka/reagent-material-ui "5.2.4-0" :exclusions [arttuka/reagent-material-ui-js]] + [arttuka/reagent-material-ui "5.4.3-0" :exclusions [arttuka/reagent-material-ui-js]] #### MUI component names with shadow-cljs @@ -92,9 +92,9 @@ The build process also includes `lein cljfmt`. The project follows MUI's version numbering. -* Current `@mui/material` version: `5.2.4` -* Current `@mui/icons-material` version: `5.2.4` -* Current `@mui/lab` version: `5.0.0-alpha.60` +* Current `@mui/material` version: `5.4.3` +* Current `@mui/icons-material` version: `5.4.3` +* Current `@mui/lab` version: `5.0.0-alpha.70` ### License diff --git a/project.clj b/project.clj index f0a92b422..82e6b1026 100644 --- a/project.clj +++ b/project.clj @@ -1,4 +1,4 @@ -(defproject arttuka/reagent-material-ui "5.2.4-0" +(defproject arttuka/reagent-material-ui "5.4.3-0" :description "Reagent wrapper library for MUI (formerly Material UI) v5" :url "https://github.com/arttuka/reagent-material-ui" :license {:name "Eclipse Public License 2.0" @@ -7,7 +7,7 @@ [reagent "1.1.0"] [com.andrewmcveigh/cljs-time "0.5.2"] [camel-snake-kebab "0.4.2"] - [arttuka/reagent-material-ui-js "5.2.4-0"]] + [arttuka/reagent-material-ui-js "5.4.3-0"]] :plugins [[lein-cljfmt "0.8.0"] [lein-cljsbuild "1.1.8"] [lein-doo "0.1.11"]] diff --git a/reagent-material-ui-js/project.clj b/reagent-material-ui-js/project.clj index c1b43ccb6..327611a37 100644 --- a/reagent-material-ui-js/project.clj +++ b/reagent-material-ui-js/project.clj @@ -1,4 +1,4 @@ -(defproject arttuka/reagent-material-ui-js "5.2.4-0" +(defproject arttuka/reagent-material-ui-js "5.4.3-0" :description "Packaged Javascript files for reagent-material-ui" :url "https://github.com/arttuka/reagent-material-ui" :license {:name "Eclipse Public License 2.0"