diff --git a/CHANGELOG.md b/CHANGELOG.md index d38a05e94..18ac202e8 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,13 @@ # Changelog +See [Material UI changelog](https://github.com/mui-org/material-ui/blob/master/CHANGELOG.md) for changes in Material UI. + +## 4.11.0-4 + +**[compare](https://github.com/arttuka/reagent-material-ui/compare/v4.11.0-3...v4.11.0-4)** + +- Added support for responsive font sizes (#9) @wkok + ## 4.11.0-3 **[compare](https://github.com/arttuka/reagent-material-ui/compare/v4.11.0-1...v4.11.0-3)** diff --git a/README.md b/README.md index 9db1c9890..64a1945b9 100644 --- a/README.md +++ b/README.md @@ -17,7 +17,7 @@ Their examples are very good. and this library tries to follow the original idea To add Material UI to an existing Reagent project, just add this library to your dependencies: ``` -[arttuka/reagent-material-ui "4.11.0-3"] +[arttuka/reagent-material-ui "4.11.0-4"] ``` Most of the library is in the form of regular Reagent components. Each component is contained in a namespace that mirrors diff --git a/example/project.clj b/example/project.clj index f4ee70b5f..4fc69e62e 100644 --- a/example/project.clj +++ b/example/project.clj @@ -1,7 +1,7 @@ (defproject reagent-material-ui-example "1.0.0" :dependencies [[org.clojure/clojure "1.10.1"] [org.clojure/clojurescript "1.10.773"] - [arttuka/reagent-material-ui "4.11.0-3"]] + [arttuka/reagent-material-ui "4.11.0-4"]] :source-paths ["src"] :profiles {:dev {:dependencies [[com.bhauman/figwheel-main "0.2.11" :exclusions [org.clojure/clojurescript]]] :resource-paths ["target"]}} diff --git a/example/shadow-cljs.edn b/example/shadow-cljs.edn index e277758bb..627d75c10 100644 --- a/example/shadow-cljs.edn +++ b/example/shadow-cljs.edn @@ -1,5 +1,5 @@ {:dependencies [[reagent "0.10.0"] - [arttuka/reagent-material-ui "4.11.0-3"]] + [arttuka/reagent-material-ui "4.11.0-4"]] :source-paths ["src"] :builds {:dev {:target :browser :output-dir "resources/public/js" diff --git a/package.json b/package.json index 1ec535c56..1e8d4c9e3 100644 --- a/package.json +++ b/package.json @@ -23,7 +23,7 @@ "build": "npm run clean && npm run build:dev && npm run build:prod", "build:dev": "webpack --mode development", "build:prod": "webpack --mode production", - "clean": "rimraf './src/generated/material-ui/material-ui.{inc,min.inc}.js' .shadow-cljs", + "clean": "rimraf './src/generated/material-ui/material-ui*.{inc,min.inc}.js' .shadow-cljs", "test": "shadow-cljs compile test && karma start --single-run" } } diff --git a/project.clj b/project.clj index a484373a8..b09fba7a2 100644 --- a/project.clj +++ b/project.clj @@ -1,4 +1,4 @@ -(defproject arttuka/reagent-material-ui "4.11.0-3" +(defproject arttuka/reagent-material-ui "4.11.0-4" :description "Reagent wrapper library for Material UI v4" :url "https://github.com/arttuka/reagent-material-ui" :license {:name "Eclipse Public License 2.0"