Skip to content

Commit

Permalink
Version release (#2616)
Browse files Browse the repository at this point in the history
Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
  • Loading branch information
github-actions[bot] and github-actions[bot] committed Nov 12, 2020
1 parent 2f3dcb2 commit e19078c
Show file tree
Hide file tree
Showing 8 changed files with 39 additions and 25 deletions.
6 changes: 0 additions & 6 deletions .changeset/short-badgers-wink.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/strange-coins-sin.md

This file was deleted.

9 changes: 9 additions & 0 deletions packages/mobx-react-lite/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,14 @@
# mobx-react-lite

## 3.1.6

### Patch Changes

- [`2f3dcb27`](https://github.com/mobxjs/mobx/commit/2f3dcb274f795ffca4ae724b6b4795958620838d) Thanks [@FredyC](https://github.com/FredyC)! - Fix names of UMD exports [#2517](https://github.com/mobxjs/mobx/issues/2617)

- Updated dependencies [[`79a09f49`](https://github.com/mobxjs/mobx/commit/79a09f49a9f2baddbab8d89e9a7ac07cffadf624)]:
- mobx@6.0.4

## 3.1.5

### Patch Changes
Expand Down
6 changes: 3 additions & 3 deletions packages/mobx-react-lite/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "mobx-react-lite",
"version": "3.1.5",
"version": "3.1.6",
"description": "Lightweight React bindings for MobX based on React 16.8+ and Hooks",
"source": "src/index.ts",
"main": "dist/index.js",
Expand Down Expand Up @@ -39,7 +39,7 @@
"homepage": "https://mobx.js.org",
"dependencies": {},
"peerDependencies": {
"mobx": "^6.0.0",
"mobx": "^6.0.4",
"react": "^16.8.0 || ^17"
},
"peerDependenciesMeta": {
Expand All @@ -51,7 +51,7 @@
}
},
"devDependencies": {
"mobx": "^6.0.0",
"mobx": "^6.0.4",
"expose-gc": "^1.0.0"
},
"keywords": [
Expand Down
10 changes: 10 additions & 0 deletions packages/mobx-react/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,15 @@
# mobx-react

## 7.0.5

### Patch Changes

- [`2f3dcb27`](https://github.com/mobxjs/mobx/commit/2f3dcb274f795ffca4ae724b6b4795958620838d) Thanks [@FredyC](https://github.com/FredyC)! - Fix names of UMD exports [#2517](https://github.com/mobxjs/mobx/issues/2617)

- Updated dependencies [[`2f3dcb27`](https://github.com/mobxjs/mobx/commit/2f3dcb274f795ffca4ae724b6b4795958620838d), [`79a09f49`](https://github.com/mobxjs/mobx/commit/79a09f49a9f2baddbab8d89e9a7ac07cffadf624)]:
- mobx-react-lite@3.1.6
- mobx@6.0.4

## 7.0.4

### Patch Changes
Expand Down
10 changes: 5 additions & 5 deletions packages/mobx-react/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "mobx-react",
"version": "7.0.4",
"version": "7.0.5",
"description": "React bindings for MobX. Create fully reactive components.",
"source": "src/index.ts",
"main": "dist/index.js",
Expand Down Expand Up @@ -36,10 +36,10 @@
},
"homepage": "http://mobx.js.org/",
"dependencies": {
"mobx-react-lite": "^3.1.4"
"mobx-react-lite": "^3.1.6"
},
"peerDependencies": {
"mobx": "^6.0.0",
"mobx": "^6.0.4",
"react": "^16.8.0 || ^17"
},
"peerDependenciesMeta": {
Expand All @@ -51,8 +51,8 @@
}
},
"devDependencies": {
"mobx": "^6.0.0",
"mobx-react-lite": "^3.1.4"
"mobx": "^6.0.4",
"mobx-react-lite": "^3.1.6"
},
"keywords": [
"mobx",
Expand Down
16 changes: 11 additions & 5 deletions packages/mobx/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# mobx

## 6.0.4

### Patch Changes

- [`79a09f49`](https://github.com/mobxjs/mobx/commit/79a09f49a9f2baddbab8d89e9a7ac07cffadf624) [#2615](https://github.com/mobxjs/mobx/pull/2615) Thanks [@urugator](https://github.com/urugator)! - Fix [#2614](https://github.com/mobxjs/mobx/issues/2614) - `makeObservable` does not respect `options.name`

## 6.0.3

### Patch Changes
Expand Down Expand Up @@ -985,7 +991,7 @@ A deprecation message will now be printed if creating computed properties while

```javascript
const x = observable({
computedProp: function () {
computedProp: function() {
return someComputation
}
})
Expand All @@ -1010,7 +1016,7 @@ or alternatively:

```javascript
observable({
computedProp: computed(function () {
computedProp: computed(function() {
return someComputation
})
})
Expand All @@ -1028,7 +1034,7 @@ N.B. If you want to introduce actions on an observable that modify its state, us
```javascript
observable({
counter: 0,
increment: action(function () {
increment: action(function() {
this.counter++
})
})
Expand Down Expand Up @@ -1154,10 +1160,10 @@ function Square() {
extendObservable(this, {
length: 2,
squared: computed(
function () {
function() {
return this.squared * this.squared
},
function (surfaceSize) {
function(surfaceSize) {
this.length = Math.sqrt(surfaceSize)
}
)
Expand Down
2 changes: 1 addition & 1 deletion packages/mobx/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "mobx",
"version": "6.0.3",
"version": "6.0.4",
"description": "Simple, scalable state management.",
"source": "src/mobx.ts",
"main": "dist/index.js",
Expand Down

0 comments on commit e19078c

Please sign in to comment.