Skip to content

Commit

Permalink
Version 5.0.0-beta.5-0
Browse files Browse the repository at this point in the history
  • Loading branch information
arttuka committed Aug 31, 2021
1 parent dcabb3c commit 569378b
Show file tree
Hide file tree
Showing 7 changed files with 19 additions and 12 deletions.
9 changes: 8 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,18 @@

See [Material UI changelog](https://github.com/mui-org/material-ui/blob/next/CHANGELOG.md) for changes in Material UI.

## 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)**

- Update Material UI to v5.0.0-beta.5
- Fix require bug when using `@material-ui/lab` with CLJSJS packages

## 5.0.0-beta.2-0

**[compare](https://github.com/arttuka/reagent-material-ui/compare/v5.0.0-alpha.32-0...v5.0.0-beta.2-0)**

- Update Material UI to v5.0.0-beta.2-0
- Update Material UI to v5.0.0-beta.2
- Add components from `@material-ui/unstyled`
- Move functions from `@material-ui/core/styles` and `@material-ui/styles` to separate namespaces
- Fix default locale in `localization-provider` (#19) @alenkralj
Expand Down
10 changes: 5 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,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 "5.0.0-beta.2-0"]
[arttuka/reagent-material-ui "5.0.0-beta.5-0"]
```

Most of the library is in the form of regular Reagent components. Each component is contained in a namespace that mirrors
Expand Down Expand Up @@ -52,7 +52,7 @@ The adapters from Material-UI 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 Material UI 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.2-0" :exclusions [arttuka/reagent-material-ui-js]]
[arttuka/reagent-material-ui "5.0.0-beta.5-0" :exclusions [arttuka/reagent-material-ui-js]]

#### Material UI component names with shadow-cljs

Expand Down Expand Up @@ -84,9 +84,9 @@ The build process also includes `lein cljfmt`.

The project follows Material UI's version numbering.

* Current `@material-ui/core` version: `5.0.0-beta.2-0`
* Current `@material-ui/icons` version: `5.0.0-beta.2-0`
* Current `@material-ui/lab` version: `5.0.0-alpha.41`
* Current `@material-ui/core` version: `5.0.0-beta.5`
* Current `@material-ui/icons` version: `5.0.0-beta.5`
* Current `@material-ui/lab` version: `5.0.0-alpha.44`

### License

Expand Down
2 changes: 1 addition & 1 deletion example/deps.edn
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{:paths ["src" "target" "resources"]
:deps {arttuka/reagent-material-ui {:mvn/version "5.0.0-beta.2-0"
:deps {arttuka/reagent-material-ui {:mvn/version "5.0.0-beta.5-0"
#_#_:exclusions [arttuka/reagent-material-ui-js]}
cljsjs/react {:mvn/version "17.0.2-0"}
cljsjs/react-dom {:mvn/version "17.0.2-0"}
Expand Down
2 changes: 1 addition & 1 deletion example/project.clj
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
(defproject reagent-material-ui-example "1.0.0"
:dependencies [[org.clojure/clojure "1.10.3"]
[org.clojure/clojurescript "1.10.879"]
[arttuka/reagent-material-ui "5.0.0-beta.2-0"
[arttuka/reagent-material-ui "5.0.0-beta.5-0"
#_#_ :exclusions [arttuka/reagent-material-ui-js]]
[cljsjs/react "17.0.2-0"]
[cljsjs/react-dom "17.0.2-0"]]
Expand Down
2 changes: 1 addition & 1 deletion example/shadow-cljs.edn
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{:dependencies [[reagent "1.1.0"]
[arttuka/reagent-material-ui "5.0.0-beta.2-0"]]
[arttuka/reagent-material-ui "5.0.0-beta.5-0"]]
:source-paths ["src"]
:builds {:dev {:target :browser
:output-dir "resources/public/js"
Expand Down
4 changes: 2 additions & 2 deletions project.clj
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
(defproject arttuka/reagent-material-ui "5.0.0-beta.2-0"
(defproject arttuka/reagent-material-ui "5.0.0-beta.5-0"
:description "Reagent wrapper library for Material UI v5 alpha"
:url "https://github.com/arttuka/reagent-material-ui"
:license {:name "Eclipse Public License 2.0"
Expand All @@ -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.2-0"]]
[arttuka/reagent-material-ui-js "5.0.0-beta.5-0"]]
:plugins [[lein-cljfmt "0.8.0"]
[lein-cljsbuild "1.1.8"]
[lein-doo "0.1.11"]]
Expand Down
2 changes: 1 addition & 1 deletion reagent-material-ui-js/project.clj
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
(defproject arttuka/reagent-material-ui-js "5.0.0-beta.2-0"
(defproject arttuka/reagent-material-ui-js "5.0.0-beta.5-0"
:description "Packaged Javascript files for reagent-material-ui"
:url "https://github.com/arttuka/reagent-material-ui"
:license {:name "Eclipse Public License 2.0"
Expand Down

0 comments on commit 569378b

Please sign in to comment.