From 8754c2e2923bb6379add666313e297543bdc9df5 Mon Sep 17 00:00:00 2001 From: Arttu Kaipiainen Date: Tue, 21 Sep 2021 22:21:34 +0300 Subject: [PATCH] Version 5.0.0-0 --- CHANGELOG.md | 10 ++++++++++ README.md | 4 ++-- project.clj | 4 ++-- reagent-material-ui-js/project.clj | 2 +- 4 files changed, 15 insertions(+), 5 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 33bf0bd67..cbed44565 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,16 @@ See [MUI changelog](https://github.com/mui-org/material-ui/blob/master/CHANGELOG.md) for changes in MUI. +## 5.0.0-0 + +**[compare](https://github.com/arttuka/reagent-material-ui/compare/v5.0.0-beta.5-0...v5.0.0-0)** + +- Update MUI to v5.0.0 +- **BREAKING** Rename packages according to new MUI packages: + - `reagent-material-ui.core` becomes `reagent-mui.material` + - `reagent-material-ui.unstyled` becomes `reagent-mui.core` + - Other packages starting with `reagent-material-ui` are renamed to start with `reagent-mui` + ## 5.0.0-beta.5-0 **[compare](https://github.com/arttuka/reagent-material-ui/compare/v5.0.0-beta.2-0...v5.0.0-beta.5-0)** diff --git a/README.md b/README.md index 3d7e4b4af..79c8abee6 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.0.0-beta.5-0"] +[arttuka/reagent-material-ui "5.0.0-0"] ``` Most of the library is in the form of regular Reagent components. Each component is contained in a namespace that mirrors @@ -52,7 +52,7 @@ The adapters from MUI Lab are not included in this library. 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.0.0-beta.5-0" :exclusions [arttuka/reagent-material-ui-js]] + [arttuka/reagent-material-ui "5.0.0-0" :exclusions [arttuka/reagent-material-ui-js]] #### MUI component names with shadow-cljs diff --git a/project.clj b/project.clj index 45d33ed91..b11d34415 100644 --- a/project.clj +++ b/project.clj @@ -1,4 +1,4 @@ -(defproject arttuka/reagent-material-ui "5.0.0-beta.5-0" +(defproject arttuka/reagent-material-ui "5.0.0-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.0.0-beta.5-0"]] + [arttuka/reagent-material-ui-js "5.0.0-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 fa7d227f6..e23516241 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.0.0-beta.5-0" +(defproject arttuka/reagent-material-ui-js "5.0.0-0" :description "Packaged Javascript files for reagent-material-ui" :url "https://github.com/arttuka/reagent-material-ui" :license {:name "Eclipse Public License 2.0"