Skip to content

Commit aeb1a8e

Browse files
committed
release 0.1.23
1 parent a96021d commit aeb1a8e

5 files changed

Lines changed: 12 additions & 6 deletions

File tree

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,11 +4,17 @@ All notable changes to this project will be documented in this file.
44

55
## [Unreleased]
66

7+
## [0.1.23] - 2026-06-15
8+
79
### Added
810

911
- Added `install.sh` for Linux CLI installs via `curl -fsSL https://raw.githubusercontent.com/ppotepa/rpack/main/install.sh | bash`.
1012
- Added Linux PATH integration, `rpack-open`, optional `.rpack` file association through `xdg-mime`, and executable `.rpack` support through `binfmt_misc`.
1113

14+
### Fixed
15+
16+
- Fixed apply history recording for Git repositories without an initial `HEAD` commit.
17+
1218
## [0.1.22] - 2026-06-15
1319

1420
### Added

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -137,7 +137,7 @@ dotnet pack src/Rpack.Cli -c Release
137137
Build Windows MSI locally (both variants at once):
138138

139139
```powershell
140-
.\scripts\build-windows-msi.ps1 -Version 0.1.22
140+
.\scripts\build-windows-msi.ps1 -Version 0.1.23
141141
```
142142

143143
This creates two installers:
@@ -148,8 +148,8 @@ This creates two installers:
148148
Build only one variant when needed:
149149

150150
```powershell
151-
.\scripts\build-windows-msi.ps1 -Version 0.1.22 -Variant framework-dependent
152-
.\scripts\build-windows-msi.ps1 -Version 0.1.22 -Variant self-contained
151+
.\scripts\build-windows-msi.ps1 -Version 0.1.23 -Variant framework-dependent
152+
.\scripts\build-windows-msi.ps1 -Version 0.1.23 -Variant self-contained
153153
```
154154

155155
## Usage

scripts/build-windows-msi.ps1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
param(
2-
[string] $Version = "0.1.22",
2+
[string] $Version = "0.1.23",
33
[string] $Runtime = "win-x64",
44
[string] $Configuration = "Release",
55
[string] $OutputDirectory = "artifacts",

src/Rpack.Cli/Rpack.Cli.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
<TargetFramework>net10.0</TargetFramework>
1313
<AssemblyName>rpack</AssemblyName>
1414
<RootNamespace>Rpack.Cli</RootNamespace>
15-
<Version>0.1.22</Version>
15+
<Version>0.1.23</Version>
1616
<IncludeSourceRevisionInInformationalVersion>false</IncludeSourceRevisionInInformationalVersion>
1717
<Authors>Pawel Potepa</Authors>
1818
<Description>Portable, validated patch packages for Git working trees.</Description>

src/Rpack.Open/Rpack.Open.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
<EnableWindowsTargeting>true</EnableWindowsTargeting>
1414
<AssemblyName>rpack-open</AssemblyName>
1515
<RootNamespace>Rpack.Open</RootNamespace>
16-
<Version>0.1.22</Version>
16+
<Version>0.1.23</Version>
1717
<IncludeSourceRevisionInInformationalVersion>false</IncludeSourceRevisionInInformationalVersion>
1818
<Authors>Pawel Potepa</Authors>
1919
<Description>Windows file association launcher for rpack packages.</Description>

0 commit comments

Comments
 (0)