Skip to content

Commit

Permalink
Release 4.9.0
Browse files Browse the repository at this point in the history
  • Loading branch information
MangelMaxime committed Dec 14, 2023
1 parent c9aebb5 commit 7d03d98
Show file tree
Hide file tree
Showing 5 changed files with 20 additions and 6 deletions.
2 changes: 2 additions & 0 deletions src/Fable.Cli/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## Unreleased

## 4.9.0 - 2023-12-14

### Fixed

#### Python
Expand Down
11 changes: 8 additions & 3 deletions src/Fable.Cli/Fable.Cli.fsproj
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,14 @@
<DisableImplicitFSharpCoreReference>true</DisableImplicitFSharpCoreReference>
<OutputType>Exe</OutputType>
<TargetFramework>net6.0</TargetFramework>
<Version>4.8.1</Version>
<PackageReleaseNotes>
- Fix the version reported by Fable (@MangelMaxime)
<Version>4.9.0</Version>
<PackageReleaseNotes>## Fixed


### Python

- [GH-3655](https://github.com/fable-compiler/Fable/issues/3655) Fix for Python output file names (by @dbrattli)
- [GH-3660](https://github.com/fable-compiler/Fable/issues/3660) Fix for decimal to string with culture (by @dbrattli)

</PackageReleaseNotes>
<!-- Allow users with newer dotnet SDK to run Fable, see #1910 -->
Expand Down
3 changes: 3 additions & 0 deletions src/Fable.Compiler/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,9 +1,12 @@
# Changelog

All notable changes to this project will be documented in this file.

The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## Unreleased

## 4.0.0-beta-001 - 2023-12-14

* Initial release
8 changes: 6 additions & 2 deletions src/Fable.Compiler/Fable.Compiler.fsproj
Original file line number Diff line number Diff line change
@@ -1,12 +1,16 @@
<Project Sdk="Microsoft.NET.Sdk">
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<TargetFramework>net6.0</TargetFramework>
<GenerateDocumentationFile>true</GenerateDocumentationFile>
<DisableImplicitFSharpCoreReference>true</DisableImplicitFSharpCoreReference>
<CopyLocalLockFileAssemblies>true</CopyLocalLockFileAssemblies>
<RootNamespace>Fable.Compiler</RootNamespace>
<Version>0.1.0</Version>
<Version>4.0.0-beta-001</Version>
<PackageReleaseNotes>
- Initial release

</PackageReleaseNotes>
<DebugType>embedded</DebugType>
</PropertyGroup>

Expand Down
2 changes: 1 addition & 1 deletion src/Fable.Transforms/Global/Compiler.fs
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ open System

module Literals =
[<Literal>]
let VERSION = "4.8.1"
let VERSION = "4.9.0"

[<Literal>]
let JS_LIBRARY_VERSION = "1.1.1"
Expand Down

0 comments on commit 7d03d98

Please sign in to comment.