Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions src/Fable.Cli/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

### Fixed

* [Python] Fix `__hash__` to return native `int` instead of `int32` for Python 3.14 compatibility (by @dbrattli)
* [Python] Fix PyPI publish workflow version pattern to support `rc` tags (by @dbrattli)
* [Beam] Bundle `fable-library-beam` in NuGet package so `dotnet fable --lang beam` works (by @dbrattli)
* [Beam] Fix optional arguments by unwrapping at call sites and padding missing trailing args (by @dbrattli)
Expand Down
1 change: 1 addition & 0 deletions src/Fable.Compiler/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

### Fixed

* [Python] Fix `__hash__` to return native `int` instead of `int32` for Python 3.14 compatibility (by @dbrattli)
* [Beam] Fix optional arguments by unwrapping at call sites and padding missing trailing args (by @dbrattli)
* [Beam] Fix generic constraint interface dispatch (by @dbrattli)
* [Beam] Fix class constructor field invokes and explicit val fields (by @dbrattli)
Expand Down
2 changes: 1 addition & 1 deletion src/fable-library-py/fable_library/reflection.py
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ def __eq__(self, other: Any) -> bool:
def __hash__(self) -> int:
hashes: list[int32] = [int32(hash(x)) for x in self.generics or []]
hashes.append(int32(hash(self.fullname)))
return combine_hash_codes(hashes)
return int(combine_hash_codes(hashes))


def class_type(
Expand Down
Loading