Skip to content
This repository has been archived by the owner on Aug 18, 2020. It is now read-only.

Commit

Permalink
cabal version bump to 1.2.1 (#3071)
Browse files Browse the repository at this point in the history
  • Loading branch information
disassembler authored and jmitchell committed Jun 8, 2018
1 parent 4055691 commit eb5888c
Show file tree
Hide file tree
Showing 23 changed files with 44 additions and 44 deletions.
2 changes: 1 addition & 1 deletion auxx/cardano-sl-auxx.cabal
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
name: cardano-sl-auxx
version: 1.2.0
version: 1.2.1
synopsis: Cardano SL - Auxx
description: Cardano SL - Auxx
license: MIT
Expand Down
2 changes: 1 addition & 1 deletion binary/cardano-sl-binary.cabal
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
name: cardano-sl-binary
version: 1.2.0
version: 1.2.1
synopsis: Cardano SL - binary serialization
description: This package defines a type class for binary serialization,
helpers and instances.
Expand Down
2 changes: 1 addition & 1 deletion block/cardano-sl-block.cabal
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
name: cardano-sl-block
version: 1.2.0
version: 1.2.1
synopsis: Cardano SL - block processing
description: Cardano SL - block processing
license: MIT
Expand Down
2 changes: 1 addition & 1 deletion client/cardano-sl-client.cabal
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
name: cardano-sl-client
version: 1.2.0
version: 1.2.1
synopsis: Cardano SL client modules
description: Cardano SL client modules
license: MIT
Expand Down
2 changes: 1 addition & 1 deletion core/cardano-sl-core.cabal
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
name: cardano-sl-core
version: 1.2.0
version: 1.2.1
synopsis: Cardano SL - core
description: Cardano SL - core
license: MIT
Expand Down
2 changes: 1 addition & 1 deletion crypto/cardano-sl-crypto.cabal
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
name: cardano-sl-crypto
version: 1.2.0
version: 1.2.1
synopsis: Cardano SL - cryptography primitives
description: This package contains cryptography primitives used in Cardano SL.
license: MIT
Expand Down
2 changes: 1 addition & 1 deletion db/cardano-sl-db.cabal
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
name: cardano-sl-db
version: 1.2.0
version: 1.2.1
synopsis: Cardano SL - basic DB interfaces
description: Cardano SL - basic DB interfaces
license: MIT
Expand Down
2 changes: 1 addition & 1 deletion delegation/cardano-sl-delegation.cabal
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
name: cardano-sl-delegation
version: 1.2.0
version: 1.2.1
synopsis: Cardano SL - delegation
description: Cardano SL - delegation
license: MIT
Expand Down
2 changes: 1 addition & 1 deletion explorer/cardano-sl-explorer.cabal
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
name: cardano-sl-explorer
version: 1.2.0
version: 1.2.1
synopsis: Cardano explorer
description: Please see README.md
license: MIT
Expand Down
2 changes: 1 addition & 1 deletion generator/cardano-sl-generator.cabal
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
name: cardano-sl-generator
version: 1.2.0
version: 1.2.1
synopsis: Cardano SL - arbitrary data generation
description: Cardano SL - arbitrary data generation
license: MIT
Expand Down
2 changes: 1 addition & 1 deletion infra/cardano-sl-infra.cabal
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
name: cardano-sl-infra
version: 1.2.0
version: 1.2.1
synopsis: Cardano SL - infrastructural
description: Cardano SL - infrastructural
license: MIT
Expand Down
2 changes: 1 addition & 1 deletion lib/cardano-sl.cabal
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
name: cardano-sl
version: 1.2.0
version: 1.2.1
synopsis: Cardano SL main implementation
description: Please see README.md
license: MIT
Expand Down
2 changes: 1 addition & 1 deletion lrc/cardano-sl-lrc.cabal
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
name: cardano-sl-lrc
version: 1.2.0
version: 1.2.1
synopsis: Cardano SL - Leaders and Richmen computation
description: Cardano SL - Leaders and Richmen computation
license: MIT
Expand Down
2 changes: 1 addition & 1 deletion networking/cardano-sl-networking.cabal
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
name: cardano-sl-networking
version: 1.2.0
version: 1.2.1
license: MIT
license-file: LICENSE
category: Network
Expand Down
2 changes: 1 addition & 1 deletion node/cardano-sl-node.cabal
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
name: cardano-sl-node
version: 1.2.0
version: 1.2.1
synopsis: Cardano SL simple node executable
description: Please see README.md
license: MIT
Expand Down
44 changes: 22 additions & 22 deletions pkgs/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -6952,7 +6952,7 @@ inherit (pkgs) mesa;};
}:
mkDerivation {
pname = "cardano-sl";
version = "1.2.0";
version = "1.2.1";
src = ./../lib;
libraryHaskellDepends = [
aeson ansi-terminal ansi-wl-pprint async base bytestring
Expand Down Expand Up @@ -7003,7 +7003,7 @@ inherit (pkgs) mesa;};
}:
mkDerivation {
pname = "cardano-sl-auxx";
version = "1.2.0";
version = "1.2.1";
src = ./../auxx;
isLibrary = true;
isExecutable = true;
Expand Down Expand Up @@ -7046,7 +7046,7 @@ inherit (pkgs) mesa;};
}:
mkDerivation {
pname = "cardano-sl-binary";
version = "1.2.0";
version = "1.2.1";
src = ./../binary;
libraryHaskellDepends = [
autoexporter base binary bytestring cborg containers digest
Expand Down Expand Up @@ -7074,7 +7074,7 @@ inherit (pkgs) mesa;};
}:
mkDerivation {
pname = "cardano-sl-block";
version = "1.2.0";
version = "1.2.1";
src = ./../block;
libraryHaskellDepends = [
aeson base bytestring cardano-sl-binary cardano-sl-core
Expand Down Expand Up @@ -7104,7 +7104,7 @@ inherit (pkgs) mesa;};
}:
mkDerivation {
pname = "cardano-sl-client";
version = "1.2.0";
version = "1.2.1";
src = ./../client;
libraryHaskellDepends = [
base cardano-sl cardano-sl-block cardano-sl-core cardano-sl-crypto
Expand Down Expand Up @@ -7141,7 +7141,7 @@ inherit (pkgs) mesa;};
}:
mkDerivation {
pname = "cardano-sl-core";
version = "1.2.0";
version = "1.2.1";
src = ./../core;
libraryHaskellDepends = [
aeson ansi-terminal autoexporter base base58-bytestring binary
Expand Down Expand Up @@ -7170,7 +7170,7 @@ inherit (pkgs) mesa;};
}:
mkDerivation {
pname = "cardano-sl-crypto";
version = "1.2.0";
version = "1.2.1";
src = ./../crypto;
libraryHaskellDepends = [
aeson autoexporter base binary bytestring cardano-crypto
Expand All @@ -7195,7 +7195,7 @@ inherit (pkgs) mesa;};
}:
mkDerivation {
pname = "cardano-sl-db";
version = "1.2.0";
version = "1.2.1";
src = ./../db;
libraryHaskellDepends = [
base bytestring cardano-sl-binary cardano-sl-core cardano-sl-crypto
Expand All @@ -7220,7 +7220,7 @@ inherit (pkgs) mesa;};
}:
mkDerivation {
pname = "cardano-sl-delegation";
version = "1.2.0";
version = "1.2.1";
src = ./../delegation;
libraryHaskellDepends = [
aeson base cardano-sl-binary cardano-sl-core cardano-sl-crypto
Expand Down Expand Up @@ -7255,7 +7255,7 @@ inherit (pkgs) mesa;};
}:
mkDerivation {
pname = "cardano-sl-explorer";
version = "1.2.0";
version = "1.2.1";
src = ./../explorer;
isLibrary = true;
isExecutable = true;
Expand Down Expand Up @@ -7308,7 +7308,7 @@ inherit (pkgs) mesa;};
}:
mkDerivation {
pname = "cardano-sl-generator";
version = "1.2.0";
version = "1.2.1";
src = ./../generator;
libraryHaskellDepends = [
base bytestring cardano-sl cardano-sl-block cardano-sl-client
Expand Down Expand Up @@ -7350,7 +7350,7 @@ inherit (pkgs) mesa;};
}:
mkDerivation {
pname = "cardano-sl-infra";
version = "1.2.0";
version = "1.2.1";
src = ./../infra;
libraryHaskellDepends = [
aeson base base64-bytestring bytestring cardano-report-server
Expand Down Expand Up @@ -7379,7 +7379,7 @@ inherit (pkgs) mesa;};
}:
mkDerivation {
pname = "cardano-sl-lrc";
version = "1.2.0";
version = "1.2.1";
src = ./../lrc;
libraryHaskellDepends = [
base bytestring cardano-sl-binary cardano-sl-core cardano-sl-crypto
Expand All @@ -7406,7 +7406,7 @@ inherit (pkgs) mesa;};
}:
mkDerivation {
pname = "cardano-sl-networking";
version = "1.2.0";
version = "1.2.1";
src = ./../networking;
isLibrary = true;
isExecutable = true;
Expand Down Expand Up @@ -7440,7 +7440,7 @@ inherit (pkgs) mesa;};
}:
mkDerivation {
pname = "cardano-sl-node";
version = "1.2.0";
version = "1.2.1";
src = ./../node;
isLibrary = false;
isExecutable = true;
Expand All @@ -7467,7 +7467,7 @@ inherit (pkgs) mesa;};
}:
mkDerivation {
pname = "cardano-sl-ssc";
version = "1.2.0";
version = "1.2.1";
src = ./../ssc;
libraryHaskellDepends = [
aeson array base bytestring cardano-sl-binary cardano-sl-core
Expand Down Expand Up @@ -7507,7 +7507,7 @@ inherit (pkgs) mesa;};
}:
mkDerivation {
pname = "cardano-sl-tools";
version = "1.2.0";
version = "1.2.1";
src = ./../tools;
isLibrary = true;
isExecutable = true;
Expand Down Expand Up @@ -7556,7 +7556,7 @@ inherit (pkgs) mesa;};
}:
mkDerivation {
pname = "cardano-sl-txp";
version = "1.2.0";
version = "1.2.1";
src = ./../txp;
libraryHaskellDepends = [
aeson base bytestring cardano-sl-binary cardano-sl-core
Expand Down Expand Up @@ -7588,7 +7588,7 @@ inherit (pkgs) mesa;};
}:
mkDerivation {
pname = "cardano-sl-update";
version = "1.2.0";
version = "1.2.1";
src = ./../update;
libraryHaskellDepends = [
aeson base bytestring Cabal cardano-sl-binary cardano-sl-core
Expand Down Expand Up @@ -7621,7 +7621,7 @@ inherit (pkgs) mesa;};
}:
mkDerivation {
pname = "cardano-sl-util";
version = "1.2.0";
version = "1.2.1";
src = ./../util;
libraryHaskellDepends = [
aeson autoexporter base bytestring cardano-sl-networking cborg
Expand Down Expand Up @@ -7658,7 +7658,7 @@ inherit (pkgs) mesa;};
}:
mkDerivation {
pname = "cardano-sl-wallet";
version = "1.2.0";
version = "1.2.1";
src = ./../wallet;
libraryHaskellDepends = [
acid-state aeson async base base58-bytestring bytestring cardano-sl
Expand Down Expand Up @@ -7711,7 +7711,7 @@ inherit (pkgs) mesa;};
}:
mkDerivation {
pname = "cardano-sl-wallet-new";
version = "1.2.0";
version = "1.2.1";
src = ./../wallet-new;
isLibrary = true;
isExecutable = true;
Expand Down
2 changes: 1 addition & 1 deletion ssc/cardano-sl-ssc.cabal
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
name: cardano-sl-ssc
version: 1.2.0
version: 1.2.1
synopsis: Cardano SL - shared seed computation
description: Cardano SL - shared seed computation
license: MIT
Expand Down
2 changes: 1 addition & 1 deletion tools/cardano-sl-tools.cabal
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
name: cardano-sl-tools
version: 1.2.0
version: 1.2.1
synopsis: Cardano SL - Tools
description: Cardano SL - Tools
license: MIT
Expand Down
2 changes: 1 addition & 1 deletion txp/cardano-sl-txp.cabal
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
name: cardano-sl-txp
version: 1.2.0
version: 1.2.1
synopsis: Cardano SL - transaction processing
description: Cardano SL - transaction processing
license: MIT
Expand Down
2 changes: 1 addition & 1 deletion update/cardano-sl-update.cabal
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
name: cardano-sl-update
version: 1.2.0
version: 1.2.1
synopsis: Cardano SL - update
description: Cardano SL - update
license: MIT
Expand Down
2 changes: 1 addition & 1 deletion util/cardano-sl-util.cabal
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
name: cardano-sl-util
version: 1.2.0
version: 1.2.1
synopsis: Cardano SL - general utilities
description: This package contains utility functions not specific
to Cardano SL which extend 3rd party libraries or implement
Expand Down
2 changes: 1 addition & 1 deletion wallet-new/cardano-sl-wallet-new.cabal
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
name: cardano-sl-wallet-new
version: 1.2.0
version: 1.2.1
synopsis: The Wallet Backend for a Cardano node.
description: Please see README.md
homepage: https://github.com/input-output-hk/cardano-sl/#readme
Expand Down
2 changes: 1 addition & 1 deletion wallet/cardano-sl-wallet.cabal
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
name: cardano-sl-wallet
version: 1.2.0
version: 1.2.1
synopsis: Cardano SL - wallet
description: Cardano SL - wallet
license: MIT
Expand Down

0 comments on commit eb5888c

Please sign in to comment.