Skip to content

Commit

Permalink
Update CHANGELOG.md
Browse files Browse the repository at this point in the history
  • Loading branch information
ellbee authored Mar 27, 2017
1 parent bbba675 commit 6e2c3c0
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,11 +10,11 @@ This project adheres to [Semantic Versioning](http://semver.org/).
Performance improvements (thanks to @johnhaley81)
Updated Typescript typings (thanks to everyone who helped)

## Breaking Changes
### Breaking Changes

For performance reasons, a selector is now not recalculated if its input is equal by reference (`===`).

### Example:
#### Example:

```js
import { createSelector } from 'reselect';
Expand All @@ -38,7 +38,7 @@ console.log(mySelector(state2));
console.log(mySelector(state3));
```

### Output in v2.5.4:
#### Output in v2.5.4:

```
calling..
Expand All @@ -51,7 +51,7 @@ calling..
7
```

### Output in v3.0.0:
#### Output in v3.0.0:

```
calling..
Expand Down

0 comments on commit 6e2c3c0

Please sign in to comment.