Skip to content

Commit eeee438

Browse files
committed
Release 5.0.0-alpha.21
1 parent 1b7ce96 commit eeee438

File tree

8 files changed

+21
-6
lines changed

8 files changed

+21
-6
lines changed

src/Fable.Build/GithubRelease.fs

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ let private createReleaseCommitAndPush (version: LastVersionFinder.Version) =
3535
let versionText = version.Version.ToString()
3636

3737
Git.addAll ()
38-
Git.commit ($"Release {versionText}")
38+
Git.commit ($"Release %s{versionText}")
3939
Git.push ()
4040

4141
let handle (args: string list) =
@@ -50,7 +50,10 @@ let handle (args: string list) =
5050
// Check if the user is authenticated
5151
Command.Run("gh", "auth status")
5252

53-
Publish.handle args
53+
let skipPublish = args |> List.contains "--skip-publish"
54+
55+
if not skipPublish then
56+
Publish.handle args
5457

5558
let changelogContent = File.ReadAllText(Changelog.fableCLi)
5659

src/Fable.Build/Main.fs

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -101,6 +101,10 @@ Available commands:
101101
github-release Create a GitHub release based on the CHANGELOG.md
102102
file and the version in the package.json
103103
This will also invoke the publish command
104+
Options:
105+
--skip-publish Skip the publish step (dangerous, use with care)
106+
This is useful when the publish step had an issue and we
107+
are trying to recover from it.
104108
"""
105109

106110
printfn "%s" helpText

src/Fable.Cli/CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77

88
## Unreleased
99

10+
## 5.0.0-alpha.21 - 2025-12-15
11+
1012
### Added
1113

1214
* [Python] Support catching Python `BaseException` subclasses (`KeyboardInterrupt`, `SystemExit`, `GeneratorExit`) for Python interop (by @dbrattli)

src/Fable.Compiler/CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77

88
## Unreleased
99

10+
## 5.0.0-alpha.20 - 2025-12-15
11+
1012
### Added
1113

1214
* [Python] Support catching Python `BaseException` subclasses (`KeyboardInterrupt`, `SystemExit`, `GeneratorExit`) for Python interop (by @dbrattli)

src/Fable.Transforms/Global/Compiler.fs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ namespace Fable
22

33
module Literals =
44
[<Literal>]
5-
let VERSION = "5.0.0-alpha.20"
5+
let VERSION = "5.0.0-alpha.21"
66

77
[<Literal>]
88
let JS_LIBRARY_VERSION = "2.0.0-beta.5"

src/fable-standalone/CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77

88
## Unreleased
99

10+
## 2.0.0-beta.12 - 2025-12-15
11+
12+
* Fable 5.0.0-alpha.21
13+
1014
## 2.0.0-beta.11 - 2025-12-08
1115

1216
* Fable 5.0.0-alpha.20

src/fable-standalone/package-lock.json

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

src/fable-standalone/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"type": "module",
33
"name": "@fable-org/fable-standalone",
44
"private": false,
5-
"version": "2.0.0-beta.11",
5+
"version": "2.0.0-beta.12",
66
"main": "./dist/bundle.min.js",
77
"description": "Fable compiler",
88
"keywords": [

0 commit comments

Comments
 (0)