Skip to content

Commit 6b64d43

Browse files
committed
release: prepare v1.0.0-alpha1 release
- Set version to 1.0.0-alpha1 for initial release under new package name - Update UserAgent to include full version number (1.0.0-alpha1) - Update release notes to reflect initial alpha release of Reliable.HttpClient This prepares the project for publishing as the first alpha version of the renamed package (previously HttpClient.Resilience).
1 parent 0340045 commit 6b64d43

File tree

2 files changed

+6
-5
lines changed

2 files changed

+6
-5
lines changed

src/Reliable.HttpClient/HttpClientOptions.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ public class HttpClientOptions
1818
/// <summary>
1919
/// User-Agent for HTTP requests
2020
/// </summary>
21-
public string UserAgent { get; set; } = "Reliable.HttpClient/1.0";
21+
public string UserAgent { get; set; } = "Reliable.HttpClient/1.0.0-alpha1";
2222

2323
/// <summary>
2424
/// Retry policy configuration

src/Reliable.HttpClient/Reliable.HttpClient.csproj

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,10 +3,11 @@
33
<TargetFrameworks>net6.0;net8.0;net9.0</TargetFrameworks>
44
<AssemblyName>Reliable.HttpClient</AssemblyName>
55
<PackageId>Reliable.HttpClient</PackageId>
6-
<Version>1.0.0-alpha3</Version>
7-
<PackageReleaseNotes>Added configuration validation, performance improvements with specific
8-
return types,
9-
and suppressed .NET 6.0 compatibility warnings.</PackageReleaseNotes>
6+
<Version>1.0.0-alpha1</Version>
7+
<PackageReleaseNotes>Initial alpha release of Reliable.HttpClient (renamed from
8+
HttpClient.Resilience).
9+
Features: retry with exponential backoff and jitter, circuit breaker, and HTTP response
10+
handling.</PackageReleaseNotes>
1011
<Authors>Andrey Krisanov</Authors>
1112
<Company></Company>
1213
<Description>Lightweight resilience helpers (retry with jitter, circuit breaker) and response

0 commit comments

Comments
 (0)