Skip to content

Commit 7aa2f2b

Browse files
committed
Small changes in the documentation, small version bump
1 parent aa964f0 commit 7aa2f2b

2 files changed

Lines changed: 10 additions & 10 deletions

File tree

EsoxSolutions.ObjectPool/EsoxSolutions.ObjectPool.csproj

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,14 +10,14 @@
1010
<PackageReadmeFile>README.md</PackageReadmeFile>
1111
<RepositoryUrl>https://github.com/snoekiede/EsoxSolutions.ObjectPool</RepositoryUrl>
1212
<PackageTags>objectpool;threadsafe;async;performance;metrics;healthchecks;dependencyinjection;opentelemetry;warmup;eviction;ttl;circuitbreaker;lifecycle;multitenancy;scopedpools</PackageTags>
13-
<AssemblyVersion>4.0.0</AssemblyVersion>
14-
<FileVersion>4.0.0</FileVersion>
13+
<AssemblyVersion>4.0.1</AssemblyVersion>
14+
<FileVersion>4.0.1</FileVersion>
1515
<GenerateDocumentationFile>True</GenerateDocumentationFile>
1616
<Title>Production-Ready Object Pool for .NET with Complete Observability</Title>
1717
<Authors>Iede Snoek</Authors>
1818
<PackageReleaseNotes>Version 4.0.0: Complete production-ready suite with dependency injection, health checks, OpenTelemetry metrics, pool warm-up, eviction/TTL, circuit breaker pattern, lifecycle hooks, and scoped pools for multi-tenancy. 186 tests passing with 100% success rate. Enterprise-ready with comprehensive monitoring and observability.</PackageReleaseNotes>
1919
<PackageLicenseExpression>MIT</PackageLicenseExpression>
20-
<Version>4.0.0</Version>
20+
<Version>4.0.1</Version>
2121
<SignAssembly>True</SignAssembly>
2222
<AssemblyOriginatorKeyFile>C:\temp\EsoxSolutions.ObjectPool.snk</AssemblyOriginatorKeyFile>
2323
<PackageRequireLicenseAcceptance>True</PackageRequireLicenseAcceptance>

README.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -204,12 +204,12 @@ app.Run();
204204
```
205205

206206
**Benefits:**
207-
- ? **Zero cold-start latency** - Objects pre-created during startup
208-
- ? **Automatic cleanup** - Stale objects removed automatically
209-
- ? **Resource efficiency** - No memory leaks from expired objects
210-
- ? **Configurable policies** - TTL, idle timeout, or custom eviction logic
211-
- ? **Immediate availability** - First request served instantly
212-
- ? **Progress tracking** - Monitor warm-up and eviction status
207+
- **Zero cold-start latency** - Objects pre-created during startup
208+
- **Automatic cleanup** - Stale objects removed automatically
209+
- **Resource efficiency** - No memory leaks from expired objects
210+
- **Configurable policies** - TTL, idle timeout, or custom eviction logic
211+
- **Immediate availability** - First request served instantly
212+
- **Progress tracking** - Monitor warm-up and eviction status
213213

214214
### In Your Service
215215

@@ -407,7 +407,7 @@ All pool operations are thread-safe using lock-free `ConcurrentStack<T>` and `Co
407407
- 16 circuit breaker tests
408408
- 12 lifecycle hooks tests
409409
- 16 scoped pools tests
410-
- **Production Certified**: Battle-tested and ready for enterprise deployment
410+
411411

412412
### 3.1.0 - January 2025
413413
- Individual feature releases leading to v4.0.0

0 commit comments

Comments
 (0)