Skip to content

Commit dd75acd

Browse files
authored
Nakama/Satori .NET 3.16.0 release. (#193)
1 parent 3a316d1 commit dd75acd

File tree

3 files changed

+13
-6
lines changed

3 files changed

+13
-6
lines changed

CHANGELOG.md

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

55
The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/) and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html).
66

7+
## [3.16.0] - 2025-02-13
8+
### Added
9+
- Satori: Update Client type with the newest Satori API. See [release notes](https://heroiclabs.com/docs/satori/concepts/introduction/release-notes/).
10+
11+
### Changed
12+
- Nakama+Satori: Embed version information based on Git describe into builds.
13+
14+
### Fixed
15+
- Nakama+Satori: Use formatted arguments with all logger lines in request adapters.
16+
- Satori: Use session token as jitter seed for randomized backoff with retries.
17+
718
## [3.15.0] - 2025-01-28
819
### Added
920
- Satori: Add retry attempts to "Client" type.

Nakama/Nakama.csproj

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -19,9 +19,7 @@
1919
</Exec>
2020
<Message Text="Git describe output: '$(GitTag)'" Importance="High"/>
2121
<PropertyGroup>
22-
<InformationalVersion Condition="'$(GitTag)' != ''">
23-
$([System.String]::new('$(GitTag)').Substring(1))
24-
</InformationalVersion>
22+
<InformationalVersion Condition="'$(GitTag)' != ''">$([System.String]::new('$(GitTag)').Substring(1))</InformationalVersion>
2523
</PropertyGroup>
2624
</Target>
2725

Satori/Satori.csproj

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -19,9 +19,7 @@
1919
</Exec>
2020
<Message Text="Git describe output: '$(GitTag)'" Importance="High"/>
2121
<PropertyGroup>
22-
<InformationalVersion Condition="'$(GitTag)' != ''">
23-
$([System.String]::new('$(GitTag)').Substring(1))
24-
</InformationalVersion>
22+
<InformationalVersion Condition="'$(GitTag)' != ''">$([System.String]::new('$(GitTag)').Substring(1))</InformationalVersion>
2523
</PropertyGroup>
2624
</Target>
2725

0 commit comments

Comments
 (0)