diff --git a/src/Fable.Cli/Fable.Cli.fsproj b/src/Fable.Cli/Fable.Cli.fsproj index 5b8bb1e0db..060d96c38a 100644 --- a/src/Fable.Cli/Fable.Cli.fsproj +++ b/src/Fable.Cli/Fable.Cli.fsproj @@ -4,9 +4,9 @@ true Exe net6.0 - 4.1.1 - 4.1.1 - * Fix fable-library package.json + 4.1.2 + 4.1.2 + * Print minimum fable-library version from npm Major false diff --git a/src/Fable.Cli/RELEASE_NOTES.md b/src/Fable.Cli/RELEASE_NOTES.md index 5ef87c1d95..c943a6cf1f 100644 --- a/src/Fable.Cli/RELEASE_NOTES.md +++ b/src/Fable.Cli/RELEASE_NOTES.md @@ -1,3 +1,7 @@ +### 4.1.2 + +* Print minimum fable-library version from npm + ### 4.1.1 * Fix fable-library package.json diff --git a/src/Fable.PublishUtils/PublishUtils.fs b/src/Fable.PublishUtils/PublishUtils.fs index 3b18235084..dc38cfcdd7 100644 --- a/src/Fable.PublishUtils/PublishUtils.fs +++ b/src/Fable.PublishUtils/PublishUtils.fs @@ -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 diff --git a/src/Fable.Transforms/Global/Compiler.fs b/src/Fable.Transforms/Global/Compiler.fs index 9cd3a01610..6ac1ed7d57 100644 --- a/src/Fable.Transforms/Global/Compiler.fs +++ b/src/Fable.Transforms/Global/Compiler.fs @@ -1,8 +1,8 @@ namespace Fable module Literals = - let [] VERSION = "4.1.1" - let [] JS_LIBRARY_VERSION = "0.0.0" + let [] VERSION = "4.1.2" + let [] JS_LIBRARY_VERSION = "1.0.0" type CompilerOptionsHelper = static member Make(?language,