Skip to content

Commit

Permalink
Bump version to 3.1.1
Browse files Browse the repository at this point in the history
  • Loading branch information
alfonsogarciacaro committed Apr 10, 2018
1 parent 0de90f9 commit 1f8583c
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 4 deletions.
5 changes: 5 additions & 0 deletions global.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
{
"sdk": {
"version": "2.1.4"
}
}
4 changes: 1 addition & 3 deletions src/Fable.React/Fable.Helpers.React.fs
Original file line number Diff line number Diff line change
Expand Up @@ -1119,7 +1119,6 @@ module ReactiveComponents =
}

and [<Pojo>] Model<'P, 'S> = {
key: string
props: 'P
state: 'S
children: ReactElement[]
Expand All @@ -1133,8 +1132,7 @@ type ReactiveCom<'P, 'S, 'Msg>(initProps) =

override this.render() =
let model =
{ key = this.props.key
props = this.props.props
{ props = this.props.props
state = this.state.value
children = this.children }
this.props.view model (fun msg ->
Expand Down
2 changes: 1 addition & 1 deletion src/Fable.React/Fable.React.fsproj
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<?xml version="1.0" encoding="utf-8"?>
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<Version>3.1.0</Version>
<Version>3.1.1</Version>
<TargetFrameworks>netstandard1.6;netstandard2.0</TargetFrameworks>
</PropertyGroup>
<ItemGroup>
Expand Down
4 changes: 4 additions & 0 deletions src/Fable.React/RELEASE_NOTES.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
### 3.1.1

* Remove ReactiveComponents.Model.key as React doesn't allow access to props.key

### 3.1.0

* Speed-up Server-Side rendering @forki
Expand Down

0 comments on commit 1f8583c

Please sign in to comment.