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.4.1"
".": "0.4.2"
}
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# Changelog

## [0.4.2](https://github.com/fuselang/fuse/compare/v0.4.1...v0.4.2) (2026-07-29)


### Bug Fixes

* resolve run output path and propagate main's exit code ([#18](https://github.com/fuselang/fuse/issues/18)) ([ea29874](https://github.com/fuselang/fuse/commit/ea29874c9369ebda6e020b54aecf27c67b302b4a))

## [0.4.1](https://github.com/fuselang/fuse/compare/v0.4.0...v0.4.1) (2026-07-26)


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.4.1", // x-release-please-version
version := "0.4.2", // 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 @@ -40,7 +40,7 @@ object Fuse
extends CommandIOApp(
name = "fuse",
header = "Fuse is a tool for managing Fuse source code.",
version = "0.4.1" // x-release-please-version
version = "0.4.2" // x-release-please-version
) {

// File extensions (public for test access). A built program is an
Expand Down
Loading