Skip to content

Commit

Permalink
Release 4.1.2
Browse files Browse the repository at this point in the history
  • Loading branch information
alfonsogarciacaro committed Apr 22, 2023
1 parent 8b7ac1f commit fa59ddc
Show file tree
Hide file tree
Showing 4 changed files with 14 additions and 10 deletions.
6 changes: 3 additions & 3 deletions src/Fable.Cli/Fable.Cli.fsproj
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,9 @@
<DisableImplicitFSharpCoreReference>true</DisableImplicitFSharpCoreReference>
<OutputType>Exe</OutputType>
<TargetFramework>net6.0</TargetFramework>
<Version>4.1.1</Version>
<PackageVersion>4.1.1</PackageVersion>
<PackageReleaseNotes>* Fix fable-library package.json</PackageReleaseNotes>
<Version>4.1.2</Version>
<PackageVersion>4.1.2</PackageVersion>
<PackageReleaseNotes>* Print minimum fable-library version from npm</PackageReleaseNotes>
<!-- Allow users with newer dotnet SDK to run Fable, see #1910 -->
<RollForward>Major</RollForward>
<GenerateAssemblyInfo>false</GenerateAssemblyInfo>
Expand Down
4 changes: 4 additions & 0 deletions src/Fable.Cli/RELEASE_NOTES.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
### 4.1.2

* Print minimum fable-library version from npm

### 4.1.1

* Fix fable-library package.json
Expand Down
10 changes: 5 additions & 5 deletions src/Fable.PublishUtils/PublishUtils.fs
Original file line number Diff line number Diff line change
Expand Up @@ -488,11 +488,11 @@ module Publish =
reraise()

let pushNpmWithoutReleaseNotesCheck projDir (tag: string option) =
let _npmToken =
match envVarOrNone "NPM_TOKEN" with
| Some npmToken -> npmToken
| None -> failwith "The npm token key must be set in a NPM_TOKEN environmental variable"
runInDir projDir @"npm config set '//registry.npmjs.org/:_authToken' ""${NPM_TOKEN}"""
// let _npmToken =
// match envVarOrNone "NPM_TOKEN" with
// | Some npmToken -> npmToken
// | None -> failwith "The npm token key must be set in a NPM_TOKEN environmental variable"
// runInDir projDir @"npm config set '//registry.npmjs.org/:_authToken' ""${NPM_TOKEN}"""
try
let publishCmd =
match tag with
Expand Down
4 changes: 2 additions & 2 deletions src/Fable.Transforms/Global/Compiler.fs
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
namespace Fable

module Literals =
let [<Literal>] VERSION = "4.1.1"
let [<Literal>] JS_LIBRARY_VERSION = "0.0.0"
let [<Literal>] VERSION = "4.1.2"
let [<Literal>] JS_LIBRARY_VERSION = "1.0.0"

type CompilerOptionsHelper =
static member Make(?language,
Expand Down

0 comments on commit fa59ddc

Please sign in to comment.