Skip to content

Commit 0467496

Browse files
LaurentRDCalexbiehl
authored andcommitted
Prepare for 0.5.1.0 release
1 parent e286bd2 commit 0467496

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Revision history for testcontainer-hs
22

3-
## x.x.x -- 2023-xx-xx
3+
## 0.5.1.0 -- 2025-01-14
44

55
* Introduce `withWorkingDirectory` to set the working directory inside a container (@alexbiehl, https://github.com/testcontainers/testcontainers-hs/pull/37)
66

src/TestContainers/Docker.hs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -410,7 +410,7 @@ setEnv newEnv req =
410410

411411
-- | Sets the working directory inside the container.
412412
--
413-
-- @since x.x.x
413+
-- @since 0.5.1.0
414414
withWorkingDirectory :: Text -> ContainerRequest -> ContainerRequest
415415
withWorkingDirectory workdir request =
416416
request {workDirectory = Just workdir}

src/TestContainers/Docker/Network.hs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,7 @@ withDriver driver request =
8585
-- not managed by the 'TestContainer' monad and as such is not being cleaned up
8686
-- afterwards.
8787
--
88-
-- @since x.x.x
88+
-- @since 0.5.1.0
8989
fromExistingNetwork :: NetworkId -> TestContainer Network
9090
fromExistingNetwork id =
9191
pure Network {id}

testcontainers.cabal

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
cabal-version: >=1.10
22
name: testcontainers
3-
version: 0.5.0.0
3+
version: 0.5.1.0
44
synopsis: Docker containers for your integration tests.
55
description:
66
testcontainers is a Haskell library that provides a friendly API to

0 commit comments

Comments
 (0)