Skip to content

Commit 023c23e

Browse files
annarevgunan
authored andcommitted
Updating versions for 1.7.1 (tensorflow#19036)
* Updating versions for 1.7.1 * Change version in supported config tables back to 1.7.0
1 parent a183dee commit 023c23e

File tree

8 files changed

+33
-33
lines changed

8 files changed

+33
-33
lines changed

tensorflow/core/public/version.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ limitations under the License.
2020

2121
#define TF_MAJOR_VERSION 1
2222
#define TF_MINOR_VERSION 7
23-
#define TF_PATCH_VERSION 0
23+
#define TF_PATCH_VERSION 1
2424

2525
// TF_VERSION_SUFFIX is non-empty for pre-releases (e.g. "-alpha", "-alpha.1",
2626
// "-beta", "-rc", "-rc.1")

tensorflow/docs_src/install/install_c.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ enable TensorFlow for C:
3838
OS="linux" # Change to "darwin" for macOS
3939
TARGET_DIRECTORY="/usr/local"
4040
curl -L \
41-
"https://storage.googleapis.com/tensorflow/libtensorflow/libtensorflow-${TF_TYPE}-${OS}-x86_64-1.7.0.tar.gz" |
41+
"https://storage.googleapis.com/tensorflow/libtensorflow/libtensorflow-${TF_TYPE}-${OS}-x86_64-1.7.1.tar.gz" |
4242
sudo tar -C $TARGET_DIRECTORY -xz
4343

4444
The `tar` command extracts the TensorFlow C library into the `lib`

tensorflow/docs_src/install/install_go.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ steps to install this library and enable TensorFlow for Go:
3838
TF_TYPE="cpu" # Change to "gpu" for GPU support
3939
TARGET_DIRECTORY='/usr/local'
4040
curl -L \
41-
"https://storage.googleapis.com/tensorflow/libtensorflow/libtensorflow-${TF_TYPE}-$(go env GOOS)-x86_64-1.7.0.tar.gz" |
41+
"https://storage.googleapis.com/tensorflow/libtensorflow/libtensorflow-${TF_TYPE}-$(go env GOOS)-x86_64-1.7.1.tar.gz" |
4242
sudo tar -C $TARGET_DIRECTORY -xz
4343

4444
The `tar` command extracts the TensorFlow C library into the `lib`

tensorflow/docs_src/install/install_java.md

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ following to the project's `pom.xml` to use the TensorFlow Java APIs:
3636
<dependency>
3737
<groupId>org.tensorflow</groupId>
3838
<artifactId>tensorflow</artifactId>
39-
<version>1.7.0</version>
39+
<version>1.7.1</version>
4040
</dependency>
4141
```
4242

@@ -65,7 +65,7 @@ As an example, these steps will create a Maven project that uses TensorFlow:
6565
<dependency>
6666
<groupId>org.tensorflow</groupId>
6767
<artifactId>tensorflow</artifactId>
68-
<version>1.7.0</version>
68+
<version>1.7.1</version>
6969
</dependency>
7070
</dependencies>
7171
</project>
@@ -123,12 +123,12 @@ instead:
123123
<dependency>
124124
<groupId>org.tensorflow</groupId>
125125
<artifactId>libtensorflow</artifactId>
126-
<version>1.7.0</version>
126+
<version>1.7.1</version>
127127
</dependency>
128128
<dependency>
129129
<groupId>org.tensorflow</groupId>
130130
<artifactId>libtensorflow_jni_gpu</artifactId>
131-
<version>1.7.0</version>
131+
<version>1.7.1</version>
132132
</dependency>
133133
```
134134

@@ -147,7 +147,7 @@ refer to the simpler instructions above instead.
147147
Take the following steps to install TensorFlow for Java on Linux or macOS:
148148

149149
1. Download
150-
[libtensorflow.jar](https://storage.googleapis.com/tensorflow/libtensorflow/libtensorflow-1.7.0.jar),
150+
[libtensorflow.jar](https://storage.googleapis.com/tensorflow/libtensorflow/libtensorflow-1.7.1.jar),
151151
which is the TensorFlow Java Archive (JAR).
152152

153153
2. Decide whether you will run TensorFlow for Java on CPU(s) only or with
@@ -166,18 +166,18 @@ Take the following steps to install TensorFlow for Java on Linux or macOS:
166166
OS=$(uname -s | tr '[:upper:]' '[:lower:]')
167167
mkdir -p ./jni
168168
curl -L \
169-
"https://storage.googleapis.com/tensorflow/libtensorflow/libtensorflow_jni-${TF_TYPE}-${OS}-x86_64-1.7.0.tar.gz" |
169+
"https://storage.googleapis.com/tensorflow/libtensorflow/libtensorflow_jni-${TF_TYPE}-${OS}-x86_64-1.7.1.tar.gz" |
170170
tar -xz -C ./jni
171171

172172
### Install on Windows
173173

174174
Take the following steps to install TensorFlow for Java on Windows:
175175

176176
1. Download
177-
[libtensorflow.jar](https://storage.googleapis.com/tensorflow/libtensorflow/libtensorflow-1.7.0.jar),
177+
[libtensorflow.jar](https://storage.googleapis.com/tensorflow/libtensorflow/libtensorflow-1.7.1.jar),
178178
which is the TensorFlow Java Archive (JAR).
179179
2. Download the following Java Native Interface (JNI) file appropriate for
180-
[TensorFlow for Java on Windows](https://storage.googleapis.com/tensorflow/libtensorflow/libtensorflow_jni-cpu-windows-x86_64-1.7.0.zip).
180+
[TensorFlow for Java on Windows](https://storage.googleapis.com/tensorflow/libtensorflow/libtensorflow_jni-cpu-windows-x86_64-1.7.1.zip).
181181
3. Extract this .zip file.
182182

183183

@@ -225,7 +225,7 @@ must be part of your `classpath`. For example, you can include the
225225
downloaded `.jar` in your `classpath` by using the `-cp` compilation flag
226226
as follows:
227227

228-
<pre><b>javac -cp libtensorflow-1.7.0.jar HelloTF.java</b></pre>
228+
<pre><b>javac -cp libtensorflow-1.7.1.jar HelloTF.java</b></pre>
229229

230230

231231
### Running
@@ -239,11 +239,11 @@ two files are available to the JVM:
239239
For example, the following command line executes the `HelloTF` program on Linux
240240
and macOS X:
241241

242-
<pre><b>java -cp libtensorflow-1.7.0.jar:. -Djava.library.path=./jni HelloTF</b></pre>
242+
<pre><b>java -cp libtensorflow-1.7.1.jar:. -Djava.library.path=./jni HelloTF</b></pre>
243243

244244
And the following command line executes the `HelloTF` program on Windows:
245245

246-
<pre><b>java -cp libtensorflow-1.7.0.jar;. -Djava.library.path=jni HelloTF</b></pre>
246+
<pre><b>java -cp libtensorflow-1.7.1.jar;. -Djava.library.path=jni HelloTF</b></pre>
247247

248248
If the program prints <tt>Hello from <i>version</i></tt>, you've successfully
249249
installed TensorFlow for Java and are ready to use the API. If the program

tensorflow/docs_src/install/install_linux.md

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -199,7 +199,7 @@ Take the following steps to install TensorFlow with Virtualenv:
199199
Virtualenv environment:
200200

201201
<pre>(tensorflow)$ <b>pip3 install --upgrade \
202-
https://storage.googleapis.com/tensorflow/linux/cpu/tensorflow-1.7.0-cp34-cp34m-linux_x86_64.whl</b></pre>
202+
https://storage.googleapis.com/tensorflow/linux/cpu/tensorflow-1.7.1-cp34-cp34m-linux_x86_64.whl</b></pre>
203203

204204
If you encounter installation problems, see
205205
[Common Installation Problems](#common_installation_problems).
@@ -304,7 +304,7 @@ take the following steps:
304304

305305
<pre>
306306
$ <b>sudo pip3 install --upgrade \
307-
https://storage.googleapis.com/tensorflow/linux/cpu/tensorflow-1.7.0-cp34-cp34m-linux_x86_64.whl</b>
307+
https://storage.googleapis.com/tensorflow/linux/cpu/tensorflow-1.7.1-cp34-cp34m-linux_x86_64.whl</b>
308308
</pre>
309309

310310
If this step fails, see
@@ -490,7 +490,7 @@ Take the following steps to install TensorFlow in an Anaconda environment:
490490

491491
<pre>
492492
(tensorflow)$ <b>pip install --ignore-installed --upgrade \
493-
https://storage.googleapis.com/tensorflow/linux/cpu/tensorflow-1.7.0-cp34-cp34m-linux_x86_64.whl</b></pre>
493+
https://storage.googleapis.com/tensorflow/linux/cpu/tensorflow-1.7.1-cp34-cp34m-linux_x86_64.whl</b></pre>
494494

495495
<a name="ValidateYourInstallation"></a>
496496
## Validate your installation
@@ -657,14 +657,14 @@ This section documents the relevant values for Linux installations.
657657
CPU only:
658658

659659
<pre>
660-
https://storage.googleapis.com/tensorflow/linux/cpu/tensorflow-1.7.0-cp27-none-linux_x86_64.whl
660+
https://storage.googleapis.com/tensorflow/linux/cpu/tensorflow-1.7.1-cp27-none-linux_x86_64.whl
661661
</pre>
662662

663663

664664
GPU support:
665665

666666
<pre>
667-
https://storage.googleapis.com/tensorflow/linux/gpu/tensorflow_gpu-1.7.0-cp27-none-linux_x86_64.whl
667+
https://storage.googleapis.com/tensorflow/linux/gpu/tensorflow_gpu-1.7.1-cp27-none-linux_x86_64.whl
668668
</pre>
669669

670670
Note that GPU support requires the NVIDIA hardware and software described in
@@ -676,14 +676,14 @@ Note that GPU support requires the NVIDIA hardware and software described in
676676
CPU only:
677677

678678
<pre>
679-
https://storage.googleapis.com/tensorflow/linux/cpu/tensorflow-1.7.0-cp34-cp34m-linux_x86_64.whl
679+
https://storage.googleapis.com/tensorflow/linux/cpu/tensorflow-1.7.1-cp34-cp34m-linux_x86_64.whl
680680
</pre>
681681

682682

683683
GPU support:
684684

685685
<pre>
686-
https://storage.googleapis.com/tensorflow/linux/gpu/tensorflow_gpu-1.7.0-cp34-cp34m-linux_x86_64.whl
686+
https://storage.googleapis.com/tensorflow/linux/gpu/tensorflow_gpu-1.7.1-cp34-cp34m-linux_x86_64.whl
687687
</pre>
688688

689689
Note that GPU support requires the NVIDIA hardware and software described in
@@ -695,14 +695,14 @@ Note that GPU support requires the NVIDIA hardware and software described in
695695
CPU only:
696696

697697
<pre>
698-
https://storage.googleapis.com/tensorflow/linux/cpu/tensorflow-1.7.0-cp35-cp35m-linux_x86_64.whl
698+
https://storage.googleapis.com/tensorflow/linux/cpu/tensorflow-1.7.1-cp35-cp35m-linux_x86_64.whl
699699
</pre>
700700

701701

702702
GPU support:
703703

704704
<pre>
705-
https://storage.googleapis.com/tensorflow/linux/gpu/tensorflow_gpu-1.7.0-cp35-cp35m-linux_x86_64.whl
705+
https://storage.googleapis.com/tensorflow/linux/gpu/tensorflow_gpu-1.7.1-cp35-cp35m-linux_x86_64.whl
706706
</pre>
707707

708708

@@ -714,14 +714,14 @@ Note that GPU support requires the NVIDIA hardware and software described in
714714
CPU only:
715715

716716
<pre>
717-
https://storage.googleapis.com/tensorflow/linux/cpu/tensorflow-1.7.0-cp36-cp36m-linux_x86_64.whl
717+
https://storage.googleapis.com/tensorflow/linux/cpu/tensorflow-1.7.1-cp36-cp36m-linux_x86_64.whl
718718
</pre>
719719

720720

721721
GPU support:
722722

723723
<pre>
724-
https://storage.googleapis.com/tensorflow/linux/gpu/tensorflow_gpu-1.7.0-cp36-cp36m-linux_x86_64.whl
724+
https://storage.googleapis.com/tensorflow/linux/gpu/tensorflow_gpu-1.7.1-cp36-cp36m-linux_x86_64.whl
725725
</pre>
726726

727727

tensorflow/docs_src/install/install_mac.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -119,7 +119,7 @@ Take the following steps to install TensorFlow with Virtualenv:
119119
TensorFlow in the active Virtualenv is as follows:
120120

121121
<pre> $ <b>pip3 install --upgrade \
122-
https://storage.googleapis.com/tensorflow/mac/cpu/tensorflow-1.7.0-py3-none-any.whl</b></pre>
122+
https://storage.googleapis.com/tensorflow/mac/cpu/tensorflow-1.7.1-py3-none-any.whl</b></pre>
123123

124124
If you encounter installation problems, see
125125
[Common Installation Problems](#common-installation-problems).
@@ -242,7 +242,7 @@ take the following steps:
242242
issue the following command:
243243

244244
<pre> $ <b>sudo pip3 install --upgrade \
245-
https://storage.googleapis.com/tensorflow/mac/cpu/tensorflow-1.7.0-py3-none-any.whl</b> </pre>
245+
https://storage.googleapis.com/tensorflow/mac/cpu/tensorflow-1.7.1-py3-none-any.whl</b> </pre>
246246

247247
If the preceding command fails, see
248248
[installation problems](#common-installation-problems).
@@ -350,7 +350,7 @@ Take the following steps to install TensorFlow in an Anaconda environment:
350350
TensorFlow for Python 2.7:
351351

352352
<pre> (<i>targetDirectory</i>)$ <b>pip install --ignore-installed --upgrade \
353-
https://storage.googleapis.com/tensorflow/mac/cpu/tensorflow-1.7.0-py2-none-any.whl</b></pre>
353+
https://storage.googleapis.com/tensorflow/mac/cpu/tensorflow-1.7.1-py2-none-any.whl</b></pre>
354354

355355

356356
<a name="ValidateYourInstallation"></a>
@@ -523,13 +523,13 @@ This section documents the relevant values for Mac OS installations.
523523

524524

525525
<pre>
526-
https://storage.googleapis.com/tensorflow/mac/cpu/tensorflow-1.7.0-py2-none-any.whl
526+
https://storage.googleapis.com/tensorflow/mac/cpu/tensorflow-1.7.1-py2-none-any.whl
527527
</pre>
528528

529529

530530
### Python 3.4, 3.5, or 3.6
531531

532532

533533
<pre>
534-
https://storage.googleapis.com/tensorflow/mac/cpu/tensorflow-1.7.0-py3-none-any.whl
534+
https://storage.googleapis.com/tensorflow/mac/cpu/tensorflow-1.7.1-py3-none-any.whl
535535
</pre>

tensorflow/docs_src/install/install_sources.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -359,10 +359,10 @@ Invoke `pip install` to install that pip package.
359359
The filename of the `.whl` file depends on your platform.
360360
For example, the following command will install the pip package
361361

362-
for TensorFlow 1.7.0 on Linux:
362+
for TensorFlow 1.7.1 on Linux:
363363

364364
<pre>
365-
$ <b>sudo pip install /tmp/tensorflow_pkg/tensorflow-1.7.0-py2-none-any.whl</b>
365+
$ <b>sudo pip install /tmp/tensorflow_pkg/tensorflow-1.7.1-py2-none-any.whl</b>
366366
</pre>
367367

368368
## Validate your installation

tensorflow/tools/pip_package/setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@
2929
# This version string is semver compatible, but incompatible with pip.
3030
# For pip, we will remove all '-' characters from this string, and use the
3131
# result for pip.
32-
_VERSION = '1.7.0'
32+
_VERSION = '1.7.1'
3333

3434
REQUIRED_PACKAGES = [
3535
'absl-py >= 0.1.6',

0 commit comments

Comments
 (0)