Skip to content

Commit 4d9d315

Browse files
authored
Update Package Version Numbers (tensorflow#268)
1 parent c66c912 commit 4d9d315

File tree

8 files changed

+23
-23
lines changed

8 files changed

+23
-23
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ fit xData yData = TF.runSession $ do
6161

6262
# Installation Instructions
6363

64-
Note: building this repository with `stack` requires version `2.1.3` or newer.
64+
Note: building this repository with `stack` requires version `2.3.1` or newer.
6565
Check your stack version with `stack --version` in a terminal.
6666

6767
## Build with Docker on Linux

tensorflow-core-ops/tensorflow-core-ops.cabal

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
name: tensorflow-core-ops
2-
version: 0.2.0.1
2+
version: 0.3.0.0
33
synopsis: Haskell wrappers for Core Tensorflow Ops.
44
description: Code generated signatures for the Ops in libtensorflow.
55
homepage: https://github.com/tensorflow/haskell#readme
@@ -17,7 +17,7 @@ library
1717
autogen-modules: TensorFlow.GenOps.Core
1818
build-depends: bytestring
1919
, proto-lens == 0.7.*
20-
, tensorflow == 0.2.*
20+
, tensorflow == 0.3.*
2121
, base >= 4.7 && < 5
2222
, lens-family == 2.*
2323
, text
@@ -28,8 +28,8 @@ custom-setup
2828
, bytestring
2929
, directory
3030
, proto-lens == 0.7.*
31-
, tensorflow-opgen == 0.2.*
32-
, tensorflow == 0.2.*
31+
, tensorflow-opgen == 0.3.*
32+
, tensorflow == 0.3.*
3333
, base >= 4.7 && < 5
3434
, filepath
3535
, mainland-pretty

tensorflow-logging/tensorflow-logging.cabal

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -29,11 +29,11 @@ library
2929
, stm
3030
, stm-chans
3131
, stm-conduit
32-
, tensorflow == 0.2.*
33-
, tensorflow-core-ops == 0.2.*
34-
, tensorflow-ops == 0.2.*
35-
, tensorflow-proto == 0.2.*
36-
, tensorflow-records-conduit == 0.1.*
32+
, tensorflow >= 0.2.0
33+
, tensorflow-core-ops >= 0.2.0
34+
, tensorflow-ops >= 0.2.0
35+
, tensorflow-proto >= 0.2.0
36+
, tensorflow-records-conduit >= 0.1.0
3737
, text
3838
, time
3939
, transformers

tensorflow-mnist/tensorflow-mnist.cabal

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
name: tensorflow-mnist
2-
version: 0.1.0.0
2+
version: 0.1.0.1
33
synopsis: TensorFlow demo application for learning MNIST model.
44
description: Please see README.md
55
homepage: https://github.com/tensorflow/haskell#readme
@@ -28,9 +28,9 @@ library
2828
, lens-family >= 2.0
2929
, containers
3030
, split
31-
, tensorflow-proto == 0.2.*
32-
, tensorflow-core-ops == 0.2.*
33-
, tensorflow == 0.2.*
31+
, tensorflow-proto >= 0.2.0
32+
, tensorflow-core-ops >= 0.2.0
33+
, tensorflow >= 0.2.0
3434
, text
3535
, vector
3636
, zlib

tensorflow-opgen/tensorflow-opgen.cabal

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
name: tensorflow-opgen
2-
version: 0.2.0.1
2+
version: 0.3.0.0
33
synopsis: Code generation for TensorFlow operations.
44
description: Please see README.md
55
homepage: https://github.com/tensorflow/haskell#readme
@@ -17,7 +17,7 @@ library
1717
exposed-modules: TensorFlow.OpGen.ParsedOp
1818
, TensorFlow.OpGen
1919
build-depends: proto-lens == 0.7.*
20-
, tensorflow-proto == 0.2.*
20+
, tensorflow-proto == 0.3.*
2121
, base >= 4.7 && < 5
2222
, bytestring
2323
, containers

tensorflow-ops/tensorflow-ops.cabal

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
name: tensorflow-ops
2-
version: 0.2.0.1
2+
version: 0.3.0.0
33
synopsis: Friendly layer around TensorFlow bindings.
44
description: Please see README.md
55
homepage: https://github.com/tensorflow/haskell#readme
@@ -30,9 +30,9 @@ library
3030
, data-default
3131
, lens-family == 2.*
3232
, containers
33-
, tensorflow == 0.2.*
34-
, tensorflow-proto == 0.2.*
35-
, tensorflow-core-ops == 0.2.*
33+
, tensorflow == 0.3.*
34+
, tensorflow-proto == 0.3.*
35+
, tensorflow-core-ops == 0.3.*
3636
, text
3737
default-language: Haskell2010
3838

tensorflow-proto/tensorflow-proto.cabal

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
name: tensorflow-proto
2-
version: 0.2.0.1
2+
version: 0.3.0.0
33
synopsis: TensorFlow protocol buffers.
44
description: Please see README.md
55
homepage: https://github.com/tensorflow/haskell#readme

tensorflow/tensorflow.cabal

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
name: tensorflow
2-
version: 0.2.0.1
2+
version: 0.3.0.0
33
synopsis: TensorFlow bindings.
44
description:
55
This library provides an interface to the TensorFlow
@@ -37,7 +37,7 @@ library
3737
other-modules: TensorFlow.Internal.Raw
3838
build-tools: c2hs
3939
build-depends: proto-lens == 0.7.*
40-
, tensorflow-proto == 0.2.*
40+
, tensorflow-proto == 0.3.*
4141
, base >= 4.7 && < 5
4242
, async
4343
, attoparsec

0 commit comments

Comments
 (0)