Skip to content

Commit

Permalink
Bump version to 2.0.0-alpha-014
Browse files Browse the repository at this point in the history
  • Loading branch information
iyegoroff committed Oct 7, 2018
1 parent 206a3be commit 6b77a9a
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 4 deletions.
3 changes: 3 additions & 0 deletions RELEASE_NOTES.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
### 2.0.0-alpha-014
- fixed `pickerItem` function.

### 2.0.0-alpha-013
- added generic values support for `Picker` & `PickerItem`.

Expand Down
4 changes: 1 addition & 3 deletions src/Fable.Helpers.ReactNative.fs
Original file line number Diff line number Diff line change
Expand Up @@ -1725,9 +1725,7 @@ let inline pickerIOSItem (props:Picker.PickerIOSItemProperties list) : React.Rea
props, [])

let inline pickerItem<'a> (props:Picker.PickerItemProperties<'a> list) : IPickerItem<'a> =
createElement(
RN.Picker.Item,
props, [])
unbox<IPickerItem<'a>> (createElement(RN.Picker.Item, props, []))

let inline picker (props:IPickerProperties<'a> list) (children:IPickerItem<'a> list): React.ReactElement =
createElement(
Expand Down
2 changes: 1 addition & 1 deletion src/Fable.React.Native.fsproj
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<Version>2.0.0</Version>
<PackageVersion>2.0.0-alpha-013</PackageVersion>
<PackageVersion>2.0.0-alpha-014</PackageVersion>
<TargetFramework>netstandard1.6</TargetFramework>
<GenerateDocumentationFile>true</GenerateDocumentationFile>
</PropertyGroup>
Expand Down

0 comments on commit 6b77a9a

Please sign in to comment.