Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions documentation/docs/changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,10 @@ title: Changelog
(_Tags are copied from
[babel](https://github.com/babel/babel/blob/master/CHANGELOG.md)_)

## 3.0.1

- :house: Fixed outdated peer dependencies.

## 3.0.0

- :boom: Converted the main entry point `MaterialUi` to the `Mui` namespace.
Expand Down
7 changes: 4 additions & 3 deletions public/rescript-material-ui-lab/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "rescript-material-ui-lab",
"version": "3.0.0",
"version": "3.0.1",
"description": "This library provides ReScript bindings for material-ui-lab.",
"keywords": [
"rescript",
Expand All @@ -12,7 +12,8 @@
"bugs": "https://github.com/cca-io/rescript-material-ui/issues",
"author": "Jonathan Siebern <jsiebern88@gmail.com>",
"contributors": [
"Christoph Knittel <ck@cca.io>"
"Christoph Knittel <ck@cca.io>",
"Florian Hammerschmidt <fh@cca.io>"
],
"license": "MIT",
"main": "./src/MaterialUi_Lab.re",
Expand All @@ -29,7 +30,7 @@
"@material-ui/lab": "^4.0.0-alpha.60",
"@rescript/react": "^0.10.3",
"rescript": "^9.1.2",
"rescript-material-ui": "^2.1.0"
"rescript-material-ui": "^3.0.0"
},
"devDependencies": {
"@material-ui/core": "4.12.3",
Expand Down
2 changes: 1 addition & 1 deletion public/rescript-material-ui-ppx/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@

This library creates a code extension for conveniently using the `withStyles` functionality of MaterialUi in a typesafe way.

Check out the documentation here: [https://rescript-material-ui.cca.io//](https://rescript-material-ui.cca.io//)
Check out the documentation here: [https://rescript-material-ui.cca.io/](https://rescript-material-ui.cca.io/)
17 changes: 12 additions & 5 deletions public/rescript-material-ui-ppx/package.json
Original file line number Diff line number Diff line change
@@ -1,29 +1,36 @@
{
"name": "rescript-material-ui-ppx",
"version": "3.0.0",
"version": "3.0.1",
"repository": "https://github.com/cca-io/rescript-material-ui",
"private": false,
"homepage": "https://rescript-material-ui.cca.io/",
"bugs": "https://github.com/cca-io/rescript-material-ui/issues",
"author": "Jonathan Siebern <jsiebern88@gmail.com>",
"contributors": [
"Christoph Knittel <ck@cca.io>"
"Christoph Knittel <ck@cca.io>",
"Florian Hammerschmidt <fh@cca.io>"
],
"license": "MIT",
"scripts": {
"postinstall": "node ./copyPlatformBinaryInPlace.js"
},
"keywords": [
"Reason"
"rescript",
"bindings",
"material-ui"
],
"description": "This is a ppx for using the withStyles component in ReScript Material-UI",
"peerDependencies": {
"@material-ui/core": "4.12.3",
"@rescript/react": "^0.10.3",
"@rescript-material-ui": "^2.1.0",
"rescript-material-ui": "^3.0.0",
"rescript": "^9.1.2"
},
"publishConfig": {
"access": "public"
}
},
"files": [
"/bin",
"copyPlatformBinaryInPlace.js"
]
}
5 changes: 3 additions & 2 deletions public/rescript-material-ui/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "rescript-material-ui",
"version": "3.0.0",
"version": "3.0.1",
"description": "This library provides ReScript bindings for material-ui.",
"keywords": [
"rescript",
Expand All @@ -12,7 +12,8 @@
"bugs": "https://github.com/cca-io/rescript-material-ui/issues",
"author": "Jonathan Siebern <jsiebern88@gmail.com>",
"contributors": [
"Christoph Knittel <ck@cca.io>"
"Christoph Knittel <ck@cca.io>",
"Florian Hammerschmidt <fh@cca.io>"
],
"license": "MIT",
"main": "./src/MaterialUi.re",
Expand Down