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

## [1.9.2] - 2026-08-22

### Changed
- Added authenticated per-user idempotency-key handling to CSV and Wayfarer GeoJSON location imports so mobile offline-queue recovery imports and normal location delivery converge on one server record while retaining legacy keyless import behavior (#244, #494).

## [1.9.1] - 2026-08-21

### Changed
Expand Down
2 changes: 1 addition & 1 deletion Version.props
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<Project>
<PropertyGroup>
<WayfarerVersion>1.9.1</WayfarerVersion>
<WayfarerVersion>1.9.2</WayfarerVersion>
<Version>$(WayfarerVersion)</Version>
<PackageVersion>$(WayfarerVersion)</PackageVersion>
<AssemblyInformationalVersion>$(WayfarerVersion)</AssemblyInformationalVersion>
Expand Down
4 changes: 2 additions & 2 deletions docs/23-Versioning.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ file contains the manually edited `WayfarerVersion` value and maps the standard
MSBuild metadata directly from it:

```xml
<WayfarerVersion>1.9.1</WayfarerVersion>
<WayfarerVersion>1.9.2</WayfarerVersion>
<Version>$(WayfarerVersion)</Version>
<PackageVersion>$(WayfarerVersion)</PackageVersion>
<AssemblyInformationalVersion>$(WayfarerVersion)</AssemblyInformationalVersion>
Expand All @@ -19,7 +19,7 @@ assembly through `IAppVersionProvider`. Runtime surfaces such as
separate constants.

Use `dotnet run --no-launch-profile -- version` when validating exact CLI
output. The app writes exactly `Wayfarer 1.9.1`; `--no-launch-profile` avoids
output. The app writes exactly `Wayfarer 1.9.2`; `--no-launch-profile` avoids
.NET SDK launch-profile messages so validation stays focused on app output.

## Release helper
Expand Down
2 changes: 1 addition & 1 deletion tests/Wayfarer.Tests/Versioning/AppVersionProviderTests.cs
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ public void Version_DefaultProviderReadsCompiledWayfarerVersion()
{
var provider = new AppVersionProvider();

provider.Version.Should().Be("1.9.1");
provider.Version.Should().Be("1.9.2");
}

[Fact]
Expand Down
Loading