Skip to content

Commit fa6dd75

Browse files
committed
chore(beta): v0.4.2
1 parent c54c5e8 commit fa6dd75

5 files changed

Lines changed: 10 additions & 5 deletions

File tree

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,11 @@ All notable changes to Dota Keeper will be documented in this file.
55
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
66
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
77

8+
## [0.4.2] - 2026-03-15
9+
10+
### Fixed
11+
- **macOS / Linux builds**: Bundle targets were set to `["msi"]` (Windows-only), causing macOS and Linux CI builds to compile successfully but produce no artifacts. Changed to `"all"` so each platform builds its native bundle formats (DMG/app on macOS, AppImage/deb on Linux, MSI on Windows).
12+
813
## [0.4.0] - 2026-03-15
914

1015
### Added

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "dota-keeper",
3-
"version": "0.4.1",
3+
"version": "0.4.2",
44
"description": "",
55
"type": "module",
66
"scripts": {

src-tauri/Cargo.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src-tauri/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "dota-keeper"
3-
version = "0.4.1"
3+
version = "0.4.2"
44
description = "A Tauri App"
55
authors = ["Volthawk Software (Pty) Ltd"]
66
license = "Apache-2.0"

src-tauri/tauri.conf.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"$schema": "https://schema.tauri.app/config/2",
33
"productName": "Dota Keeper",
4-
"version": "0.4.1",
4+
"version": "0.4.2",
55
"identifier": "com.volthawk.dota-keeper",
66
"build": {
77
"beforeDevCommand": "yarn dev",
@@ -24,7 +24,7 @@
2424
},
2525
"bundle": {
2626
"active": true,
27-
"targets": ["msi"],
27+
"targets": "all",
2828
"createUpdaterArtifacts": true,
2929
"icon": [
3030
"icons/32x32.png",

0 commit comments

Comments
 (0)