Skip to content

Commit a94a1ea

Browse files
committed
feat: Prepare next release cycle (3.10.0)
1 parent b1ad245 commit a94a1ea

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

Directory.Build.props

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<Project>
33
<PropertyGroup>
44
<PackageId>$(AssemblyName)</PackageId>
5-
<Version>3.9.0</Version>
5+
<Version>3.10.0</Version>
66
<AssemblyVersion>$(Version)</AssemblyVersion>
77
<FileVersion>$(Version)</FileVersion>
88
<Product>Testcontainers</Product>

docs/api/wait_strategies.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,14 +11,14 @@ _ = Wait.ForUnixContainer()
1111
.AddCustomWaitStrategy(new MyCustomWaitStrategy());
1212
```
1313

14-
<!-- In some cases, it might be necessary to configure the behavior of a wait strategy further, being able to cancel the readiness check. The API provides a callback that allows setting additional configurations such as `Retries`, `Interval`, and `Timeout`.
14+
In some cases, it might be necessary to configure the behavior of a wait strategy further, being able to cancel the readiness check. The API provides a callback that allows setting additional configurations such as `Retries`, `Interval`, and `Timeout`.
1515

1616
```csharp title="Cancel the readiness check after one minute"
1717
_ = Wait.ForUnixContainer()
1818
.UntilMessageIsLogged("Server started", o => o.WithTimeout(TimeSpan.FromMinutes(1)));
1919
```
2020

21-
Besides configuring the wait strategy, cancelling a container start can always be done utilizing a [CancellationToken](create_docker_container.md#canceling-a-container-start). -->
21+
Besides configuring the wait strategy, cancelling a container start can always be done utilizing a [CancellationToken](create_docker_container.md#canceling-a-container-start).
2222

2323
## Wait until an HTTP(S) endpoint is available
2424

0 commit comments

Comments
 (0)