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
2 changes: 1 addition & 1 deletion .release-please-manifest.json
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
{
".": "0.3.4"
".": "0.4.0"
}
13 changes: 13 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,18 @@
# Changelog

## [0.4.0](https://github.com/fuselang/fuse/compare/v0.3.4...v0.4.0) (2026-05-16)


### Features

* add stdlib monad/io types ([#15](https://github.com/fuselang/fuse/issues/15)) ([68aa177](https://github.com/fuselang/fuse/commit/68aa177adc88a55597b4d61931ad892904b22091))
* fusefmt tool ([#16](https://github.com/fuselang/fuse/issues/16)) ([d7579e2](https://github.com/fuselang/fuse/commit/d7579e2152928389f14f41ef7fcff76442af624f))


### Bug Fixes

* monomorphization advanced type constructs ([2b4ac3e](https://github.com/fuselang/fuse/commit/2b4ac3e1878793a1554ba0116219bd4968712aed))

## [0.3.4](https://github.com/fuselang/fuse/compare/v0.3.3...v0.3.4) (2026-03-29)


Expand Down
2 changes: 1 addition & 1 deletion build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import scala.scalanative.build._
val sharedSettings = Seq(
scalaVersion := "3.6.4",
name := "fuse",
version := "0.3.4", // x-release-please-version
version := "0.4.0", // x-release-please-version
scalacOptions ++= Seq(
"-feature",
"-rewrite",
Expand Down
2 changes: 1 addition & 1 deletion src/main/scala/Fuse.scala
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ object Fuse
extends CommandIOApp(
name = "fuse",
header = "Fuse is a tool for managing Fuse source code.",
version = "0.3.4" // x-release-please-version
version = "0.4.0" // x-release-please-version
) {

// File extensions (public for test access)
Expand Down