Skip to content

Commit 3c4418f

Browse files
committed
feat: add company showcase and update to v1.0.0-alpha3
- Add "Trusted by" section showcasing PlanFact as production user - Update version to 1.0.0-alpha3 in project file and README - Add call-to-action for other companies to share their usage This release includes the configuration validation and performance improvements from the previous commit.
1 parent b940b85 commit 3c4418f

2 files changed

Lines changed: 16 additions & 4 deletions

File tree

README.md

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -249,7 +249,7 @@ builder.Services.AddOpenTelemetry()
249249

250250
## Roadmap / Status
251251

252-
- Current version: pre-release (1.0.0-alpha1)
252+
- Current version: pre-release (1.0.0-alpha3)
253253

254254
### Planned features
255255

@@ -268,6 +268,14 @@ builder.Services.AddOpenTelemetry()
268268

269269
Contributions and feedback are welcome to help shape the API and features.
270270

271+
## Trusted by
272+
273+
Companies using HttpClient.Resilience in production:
274+
275+
[![planfact.io](https://planfact.io/build/images/icons/72.png)](https://planfact.io)
276+
277+
_Using HttpClient.Resilience in production? [Let us know](https://github.com/akrisanov/HttpClient.Resilience/issues) and we'll add your company here!_
278+
271279
## Contributing
272280

273281
Contributions are encouraged! Please open issues or pull requests on the GitHub repository.

src/HttpClient.Resilience/HttpClient.Resilience.csproj

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,10 @@
33
<TargetFrameworks>net6.0;net8.0;net9.0</TargetFrameworks>
44
<AssemblyName>HttpClient.Resilience</AssemblyName>
55
<PackageId>HttpClient.Resilience</PackageId>
6-
<Version>1.0.0-alpha1</Version>
7-
<PackageReleaseNotes>Initial alpha release with retry policies, circuit breaker,
8-
HttpClientOptions, and base response handler.</PackageReleaseNotes>
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>
910
<Authors>Andrey Krisanov</Authors>
1011
<Company></Company>
1112
<Description>Lightweight resilience helpers (retry with jitter, circuit breaker) and response
@@ -22,6 +23,9 @@
2223
<EmbedUntrackedSources>true</EmbedUntrackedSources>
2324
<ContinuousIntegrationBuild>true</ContinuousIntegrationBuild>
2425
<DebugType>portable</DebugType>
26+
<!-- Suppress warnings about Microsoft.Extensions.* 9.x not officially supporting .NET 6.0 -->
27+
<!-- These packages work fine with .NET 6.0 in practice -->
28+
<SuppressTfmSupportBuildWarnings>true</SuppressTfmSupportBuildWarnings>
2529
</PropertyGroup>
2630

2731
<ItemGroup>

0 commit comments

Comments
 (0)