From 17aea42891b2356eeb8ad5b734c2a6ce8d6daf7d Mon Sep 17 00:00:00 2001 From: Alfonso Garcia-Caro Date: Fri, 26 Oct 2018 16:36:43 +0200 Subject: [PATCH] Publish Fable.Core --- src/dotnet/Fable.Core/AssemblyInfo.fs | 2 +- src/dotnet/Fable.Core/Fable.Core.fsproj | 4 ++-- src/dotnet/Fable.Core/Fable.Import.JS.fs | 20 ++++++++++---------- src/dotnet/Fable.Core/RELEASE_NOTES.md | 4 ++++ 4 files changed, 17 insertions(+), 13 deletions(-) diff --git a/src/dotnet/Fable.Core/AssemblyInfo.fs b/src/dotnet/Fable.Core/AssemblyInfo.fs index 33f332efac..ebe628edeb 100644 --- a/src/dotnet/Fable.Core/AssemblyInfo.fs +++ b/src/dotnet/Fable.Core/AssemblyInfo.fs @@ -2,5 +2,5 @@ namespace Fable.Core [] [] -[] +[] do() diff --git a/src/dotnet/Fable.Core/Fable.Core.fsproj b/src/dotnet/Fable.Core/Fable.Core.fsproj index 9d61fce1c7..157d892e7d 100644 --- a/src/dotnet/Fable.Core/Fable.Core.fsproj +++ b/src/dotnet/Fable.Core/Fable.Core.fsproj @@ -4,8 +4,8 @@ Fable Core Library netstandard2.0 true - 2.0.0 - 2.0.0 + 2.0.1 + 2.0.1 diff --git a/src/dotnet/Fable.Core/Fable.Import.JS.fs b/src/dotnet/Fable.Core/Fable.Import.JS.fs index 4373f6b296..72d1e1f78a 100644 --- a/src/dotnet/Fable.Core/Fable.Import.JS.fs +++ b/src/dotnet/Fable.Core/Fable.Import.JS.fs @@ -398,7 +398,7 @@ module JS = abstract stringify: value: obj * replacer: (string->obj->obj) -> string abstract stringify: value: obj * replacer: (string->obj->obj) * space: obj -> string - and [] ReadOnlyArray<'T> = + and [] ReadonlyArray<'T> = abstract length: float with get, set [] abstract Item: n: int -> 'T with get, set abstract toString: unit -> string @@ -409,15 +409,15 @@ module JS = abstract slice: ?start: float * ?``end``: float -> ResizeArray<'T> abstract indexOf: searchElement: 'T * ?fromIndex: float -> float abstract lastIndexOf: searchElement: 'T * ?fromIndex: float -> float - abstract every: callbackfn: ('T->float->ReadOnlyArray<'T>->bool) * ?thisArg: obj -> bool - abstract some: callbackfn: ('T->float->ReadOnlyArray<'T>->bool) * ?thisArg: obj -> bool - abstract forEach: callbackfn: ('T->float->ReadOnlyArray<'T>->unit) * ?thisArg: obj -> unit - abstract map: callbackfn: ('T->float->ReadOnlyArray<'T>->'U) * ?thisArg: obj -> ResizeArray<'U> - abstract filter: callbackfn: ('T->float->ReadOnlyArray<'T>->bool) * ?thisArg: obj -> ResizeArray<'T> - abstract reduce: callbackfn: ('T->'T->float->ReadOnlyArray<'T>->'T) * ?initialValue: 'T -> 'T - abstract reduce: callbackfn: ('U->'T->float->ReadOnlyArray<'T>->'U) * initialValue: 'U -> 'U - abstract reduceRight: callbackfn: ('T->'T->float->ReadOnlyArray<'T>->'T) * ?initialValue: 'T -> 'T - abstract reduceRight: callbackfn: ('U->'T->float->ReadOnlyArray<'T>->'U) * initialValue: 'U -> 'U + abstract every: callbackfn: ('T->float->ReadonlyArray<'T>->bool) * ?thisArg: obj -> bool + abstract some: callbackfn: ('T->float->ReadonlyArray<'T>->bool) * ?thisArg: obj -> bool + abstract forEach: callbackfn: ('T->float->ReadonlyArray<'T>->unit) * ?thisArg: obj -> unit + abstract map: callbackfn: ('T->float->ReadonlyArray<'T>->'U) * ?thisArg: obj -> ResizeArray<'U> + abstract filter: callbackfn: ('T->float->ReadonlyArray<'T>->bool) * ?thisArg: obj -> ResizeArray<'T> + abstract reduce: callbackfn: ('T->'T->float->ReadonlyArray<'T>->'T) * ?initialValue: 'T -> 'T + abstract reduce: callbackfn: ('U->'T->float->ReadonlyArray<'T>->'U) * initialValue: 'U -> 'U + abstract reduceRight: callbackfn: ('T->'T->float->ReadonlyArray<'T>->'T) * ?initialValue: 'T -> 'T + abstract reduceRight: callbackfn: ('U->'T->float->ReadonlyArray<'T>->'U) * initialValue: 'U -> 'U and [] Array<'T> = abstract length: float with get, set diff --git a/src/dotnet/Fable.Core/RELEASE_NOTES.md b/src/dotnet/Fable.Core/RELEASE_NOTES.md index 482bcc3809..e6b3204b8b 100644 --- a/src/dotnet/Fable.Core/RELEASE_NOTES.md +++ b/src/dotnet/Fable.Core/RELEASE_NOTES.md @@ -1,3 +1,7 @@ +### 2.0.1 + +* Fix `ReadonlyArray` spelling + ### 2.0.0 * Fable 2