Skip to content

Commit

Permalink
Merge pull request #455 from input-output-hk/KtorZ/release-2019-06-24
Browse files Browse the repository at this point in the history
bump version to 2019.6.24, preparing next release
  • Loading branch information
KtorZ committed Jun 24, 2019
2 parents 4388d3b + b1986c2 commit be80983
Show file tree
Hide file tree
Showing 18 changed files with 21 additions and 21 deletions.
2 changes: 1 addition & 1 deletion cardano-wallet.cabal
@@ -1,5 +1,5 @@
name: cardano-wallet
version: 2019.5.24
version: 2019.6.24
synopsis: The Wallet Backend for a Cardano node.
description: Please see README.md
homepage: https://github.com/input-output-hk/cardano-wallet
Expand Down
2 changes: 1 addition & 1 deletion lib/bech32/bech32.cabal
@@ -1,5 +1,5 @@
name: bech32
version: 2019.5.24
version: 2019.6.24
synopsis: Implementation of the Bech32 segwit address format (BIP 0173).
homepage: https://github.com/input-output-hk/cardano-wallet
author: IOHK Engineering Team
Expand Down
2 changes: 1 addition & 1 deletion lib/cli/cardano-wallet-cli.cabal
@@ -1,5 +1,5 @@
name: cardano-wallet-cli
version: 2019.5.24
version: 2019.6.24
synopsis: Utilities for a building Command-Line Interfaces
homepage: https://github.com/input-output-hk/cardano-wallet
author: IOHK Engineering Team
Expand Down
2 changes: 1 addition & 1 deletion lib/core/cardano-wallet-core.cabal
@@ -1,5 +1,5 @@
name: cardano-wallet-core
version: 2019.5.24
version: 2019.6.24
synopsis: The Wallet Backend for a Cardano node.
description: Please see README.md
homepage: https://github.com/input-output-hk/cardano-wallet
Expand Down
6 changes: 3 additions & 3 deletions lib/core/test/unit/Network/Wai/Middleware/LoggingSpec.hs
Expand Up @@ -186,7 +186,7 @@ spec = describe "Logging Middleware"
entries <- readTVarIO (logs ctx)
let index = Map.fromList
$ catMaybes [ (loName l,) <$> captureTime l | l <- entries ]
Map.size (Map.filter (> (100*ms)) index) `shouldBe` 1
Map.size (Map.filter (> (200*ms)) index) `shouldBe` 1
where
setup :: IO Context
setup = do
Expand Down Expand Up @@ -325,7 +325,7 @@ instance {-# OVERLAPS #-} Arbitrary (NumberOfRequests, RandomIndex) where
, i' <- shrink i, i' > 0 && i' < n'
]
arbitrary = do
NumberOfRequests n <- arbitrary
n <- choose (1, 10)
i <- choose (0, n - 1)
return (NumberOfRequests n, RandomIndex i)

Expand Down Expand Up @@ -374,7 +374,7 @@ start logSettings warpSettings trace socket = do
hDelete = return NoContent :: Handler NoContent
hPost _ = return (ResponseJson "ok" 42) :: Handler ResponseJson
hJson = return "\NUL\NUL\NUL" :: Handler ByteString
hLong = liftIO (threadDelay $ 100*ms) $> 14 :: Handler Int
hLong = liftIO (threadDelay $ 200*ms) $> 14 :: Handler Int
hErr400 = throwError err400 :: Handler ()
hErr500 = throwError err500 :: Handler ()

Expand Down
2 changes: 1 addition & 1 deletion lib/http-bridge/cardano-wallet-http-bridge.cabal
@@ -1,5 +1,5 @@
name: cardano-wallet-http-bridge
version: 2019.5.24
version: 2019.6.24
synopsis: Wallet backend protocol-specific bits implemented using the cardano-http-bridge
description: Please see README.md
homepage: https://github.com/input-output-hk/cardano-wallet
Expand Down
4 changes: 2 additions & 2 deletions lib/http-bridge/test/integration/Cardano/LauncherSpec.hs
Expand Up @@ -33,7 +33,7 @@ spec :: Spec
spec = do
describe "LAUNCH - cardano-wallet launch" $ do
it "LAUNCH - Can start launcher with --state-dir" $ withTempDir $ \d -> do
let args = ["launch", "--network", "testnet", "--state-dir", d]
let args = ["launch", "--network", "testnet", "--random-port", "--state-dir", d]
let process = proc' "cardano-wallet" args
withCreateProcess process $ \_ (Just o) (Just e) ph -> do
expectPathEventuallyExist d
Expand All @@ -47,7 +47,7 @@ spec = do

it "LAUNCH - Can start launcher with --state-dir (empty dir)" $ withTempDir $ \d -> do
removeDirectory d
let args = ["launch", "--network", "testnet", "--state-dir", d]
let args = ["launch", "--network", "testnet", "--random-port", "--state-dir", d]
let process = proc' "cardano-wallet" args
withCreateProcess process $ \_ (Just o) (Just e) ph -> do
expectPathEventuallyExist d
Expand Down
2 changes: 1 addition & 1 deletion lib/jormungandr/cardano-wallet-jormungandr.cabal
@@ -1,5 +1,5 @@
name: cardano-wallet-jormungandr
version: 2019.5.24
version: 2019.6.24
synopsis: Wallet backend protocol-specific bits implemented using Jörmungandr
description: Please see README.md
homepage: https://github.com/input-output-hk/cardano-wallet
Expand Down
2 changes: 1 addition & 1 deletion lib/launcher/cardano-wallet-launcher.cabal
@@ -1,5 +1,5 @@
name: cardano-wallet-launcher
version: 2019.5.24
version: 2019.6.24
synopsis: Utilities for a building commands launcher
homepage: https://github.com/input-output-hk/cardano-wallet
author: IOHK Engineering Team
Expand Down
2 changes: 1 addition & 1 deletion lib/text-class/text-class.cabal
@@ -1,5 +1,5 @@
name: text-class
version: 2019.5.24
version: 2019.6.24
synopsis: Extra helpers to convert data-types to and from Text
homepage: https://github.com/input-output-hk/cardano-wallet
author: IOHK Engineering Team
Expand Down
2 changes: 1 addition & 1 deletion nix/.stack.nix/bech32.nix

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion nix/.stack.nix/cardano-wallet-cli.nix

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion nix/.stack.nix/cardano-wallet-core.nix

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion nix/.stack.nix/cardano-wallet-http-bridge.nix

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion nix/.stack.nix/cardano-wallet-jormungandr.nix

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion nix/.stack.nix/cardano-wallet-launcher.nix

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion nix/.stack.nix/cardano-wallet.nix

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion nix/.stack.nix/text-class.nix

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit be80983

Please sign in to comment.