Skip to content

Commit 06f55bf

Browse files
Update version to v1.3.0.
1 parent 86d9585 commit 06f55bf

3 files changed

Lines changed: 6 additions & 4 deletions

File tree

DockerComposeFixture.Tests/RequiredPortsIntegrationTests.cs

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -53,6 +53,7 @@ public void Ports_DetermineUtilizedPorts_ReturnsThoseInUse()
5353
[Fact]
5454
public void GivenRequiredPortInUse_ThenExceptionIsThrownWithPortNumber()
5555
{
56+
// Arrange
5657
const ushort portToOccupy = 12871;
5758
var ipEndPoint = new IPEndPoint(IPAddress.Loopback, portToOccupy);
5859
using Socket listener = new(
@@ -62,6 +63,7 @@ public void GivenRequiredPortInUse_ThenExceptionIsThrownWithPortNumber()
6263
listener.Bind(ipEndPoint);
6364
listener.Listen();
6465

66+
// Act & Assert
6567
var thrownException = Assert.Throws<PortsUnavailableException>(() =>
6668
{
6769
dockerFixture.InitOnce(() => new DockerFixtureOptions

DockerComposeFixture/DockerComposeFixture.csproj

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
<PropertyGroup>
44
<TargetFramework>netstandard2.1</TargetFramework>
5-
<Version>1.2.2</Version>
5+
<Version>1.3.0</Version>
66
<IsTestProject>false</IsTestProject>
77
<Authors>Joe Shearn</Authors>
88
<Product>Docker Compose Fixture</Product>
@@ -13,8 +13,8 @@
1313
<PackageLicenseUrl>https://github.com/devjoes/DockerComposeFixture/blob/master/LICENSE</PackageLicenseUrl>
1414
<RepositoryUrl>https://github.com/devjoes/DockerComposeFixture</RepositoryUrl>
1515
<PackageTags>docker docker-compose xunit</PackageTags>
16-
<PackageReleaseNotes>Do not throw null reference if fixture is disposed of without being initialized.</PackageReleaseNotes>
17-
<AssemblyVersion>1.2.2.0</AssemblyVersion>
16+
<PackageReleaseNotes>Add RequiredPorts checking functionality.</PackageReleaseNotes>
17+
<AssemblyVersion>1.3.0.0</AssemblyVersion>
1818
</PropertyGroup>
1919

2020
<ItemGroup>

DockerComposeFixture/DockerComposeFixture.nuspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<metadata minClientVersion="2.12">
44
<id>dockercomposefixture</id>
55
<title>docker-compose Fixture</title>
6-
<version>1.2.2</version>
6+
<version>1.3.0</version>
77
<authors>Joe Shearn</authors>
88
<owners>Joe Shearn</owners>
99
<requireLicenseAcceptance>false</requireLicenseAcceptance>

0 commit comments

Comments
 (0)