Skip to content

Commit a0dfdac

Browse files
Publish 3.0.0-beta-001
1 parent 7c2692f commit a0dfdac

6 files changed

Lines changed: 25 additions & 12 deletions

File tree

Build.fsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
#load "node_modules/fable-publish-utils/PublishUtils.fs"
22
open PublishUtils
33

4-
run "npm test"
4+
run "npm install && npm test"
55
match args with
66
| IgnoreCase "publish"::_ ->
7-
pushNuget "src/Fable.Promise.fsproj" [] doNothing
7+
pushFableNuget "src/Fable.Promise.fsproj" [] doNothing
88
| _ -> ()

RELEASE_NOTES.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,10 @@
1+
### 3.0.0-beta-001
2+
3+
* Use .catch for errors instead of second arg of .then @AngelMunoz
4+
* Allow user-defined Source overloads for interop with user-defined types @baronfel
5+
* Documentation @MangelMaxime
6+
* Cleanup and make either consistent with other signatures
7+
18
### 2.2.2
29

310
* Downgrade FSharp.Core to 4.7.2

global.json

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
{
2+
"sdk": {
3+
"version": "5.0.300",
4+
"rollForward": "minor"
5+
}
6+
}

package-lock.json

Lines changed: 7 additions & 7 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
},
1515
"dependencies": {
1616
"esm": "^3.2.25",
17-
"fable-publish-utils": "2.1.0",
17+
"fable-publish-utils": "^2.2.0",
1818
"mocha": "^8.2.1"
1919
},
2020
"devDependencies": {

src/Fable.Promise.fsproj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
<?xml version="1.0" encoding="utf-8"?>
22
<Project Sdk="Microsoft.NET.Sdk">
33
<PropertyGroup>
4-
<Version>2.2.2</Version>
5-
<PackageVersion>2.2.2</PackageVersion>
4+
<Version>3.0.0</Version>
5+
<PackageVersion>3.0.0-beta-001</PackageVersion>
66
<TargetFramework>netstandard2.0</TargetFramework>
77
</PropertyGroup>
88
<ItemGroup>

0 commit comments

Comments
 (0)