Skip to content

Commit 17d6639

Browse files
author
Michael Case
authored
Merge pull request tensorflow#20020 from case540/version_string_update_19rc1
Update version strings for 1.9.0-rc1.
2 parents d9b82cd + ea3bdbc commit 17d6639

File tree

8 files changed

+31
-31
lines changed

8 files changed

+31
-31
lines changed

tensorflow/core/public/version.h

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

2525
// TF_VERSION_SUFFIX is non-empty for pre-releases (e.g. "-alpha", "-alpha.1",
2626
// "-beta", "-rc", "-rc.1")
27-
#define TF_VERSION_SUFFIX "-rc0"
27+
#define TF_VERSION_SUFFIX "-rc1"
2828

2929
#define TF_STR_HELPER(x) #x
3030
#define TF_STR(x) TF_STR_HELPER(x)

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.9.0-rc0.tar.gz" |
41+
"https://storage.googleapis.com/tensorflow/libtensorflow/libtensorflow-${TF_TYPE}-${OS}-x86_64-1.9.0-rc1.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.9.0-rc0.tar.gz" |
41+
"https://storage.googleapis.com/tensorflow/libtensorflow/libtensorflow-${TF_TYPE}-$(go env GOOS)-x86_64-1.9.0-rc1.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.9.0-rc0</version>
39+
<version>1.9.0-rc1</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.9.0-rc0</version>
68+
<version>1.9.0-rc1</version>
6969
</dependency>
7070
</dependencies>
7171
</project>
@@ -124,12 +124,12 @@ instead:
124124
<dependency>
125125
<groupId>org.tensorflow</groupId>
126126
<artifactId>libtensorflow</artifactId>
127-
<version>1.9.0-rc0</version>
127+
<version>1.9.0-rc1</version>
128128
</dependency>
129129
<dependency>
130130
<groupId>org.tensorflow</groupId>
131131
<artifactId>libtensorflow_jni_gpu</artifactId>
132-
<version>1.9.0-rc0</version>
132+
<version>1.9.0-rc1</version>
133133
</dependency>
134134
```
135135

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

150150
1. Download
151-
[libtensorflow.jar](https://storage.googleapis.com/tensorflow/libtensorflow/libtensorflow-1.9.0-rc0.jar),
151+
[libtensorflow.jar](https://storage.googleapis.com/tensorflow/libtensorflow/libtensorflow-1.9.0-rc1.jar),
152152
which is the TensorFlow Java Archive (JAR).
153153

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

173173
### Install on Windows
174174

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

177177
1. Download
178-
[libtensorflow.jar](https://storage.googleapis.com/tensorflow/libtensorflow/libtensorflow-1.9.0-rc0.jar),
178+
[libtensorflow.jar](https://storage.googleapis.com/tensorflow/libtensorflow/libtensorflow-1.9.0-rc1.jar),
179179
which is the TensorFlow Java Archive (JAR).
180180
2. Download the following Java Native Interface (JNI) file appropriate for
181-
[TensorFlow for Java on Windows](https://storage.googleapis.com/tensorflow/libtensorflow/libtensorflow_jni-cpu-windows-x86_64-1.9.0-rc0.zip).
181+
[TensorFlow for Java on Windows](https://storage.googleapis.com/tensorflow/libtensorflow/libtensorflow_jni-cpu-windows-x86_64-1.9.0-rc1.zip).
182182
3. Extract this .zip file.
183183

184184

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

230-
<pre><b>javac -cp libtensorflow-1.9.0-rc0.jar HelloTF.java</b></pre>
230+
<pre><b>javac -cp libtensorflow-1.9.0-rc1.jar HelloTF.java</b></pre>
231231

232232

233233
### Running
@@ -241,11 +241,11 @@ two files are available to the JVM:
241241
For example, the following command line executes the `HelloTF` program on Linux
242242
and macOS X:
243243

244-
<pre><b>java -cp libtensorflow-1.9.0-rc0.jar:. -Djava.library.path=./jni HelloTF</b></pre>
244+
<pre><b>java -cp libtensorflow-1.9.0-rc1.jar:. -Djava.library.path=./jni HelloTF</b></pre>
245245

246246
And the following command line executes the `HelloTF` program on Windows:
247247

248-
<pre><b>java -cp libtensorflow-1.9.0-rc0.jar;. -Djava.library.path=jni HelloTF</b></pre>
248+
<pre><b>java -cp libtensorflow-1.9.0-rc1.jar;. -Djava.library.path=jni HelloTF</b></pre>
249249

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

tensorflow/docs_src/install/install_linux.md

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -438,7 +438,7 @@ Take the following steps to install TensorFlow in an Anaconda environment:
438438

439439
<pre>
440440
(tensorflow)$ <b>pip install --ignore-installed --upgrade \
441-
https://storage.googleapis.com/tensorflow/linux/cpu/tensorflow-1.9.0rc0-cp34-cp34m-linux_x86_64.whl</b></pre>
441+
https://storage.googleapis.com/tensorflow/linux/cpu/tensorflow-1.9.0rc1-cp34-cp34m-linux_x86_64.whl</b></pre>
442442

443443
<a name="ValidateYourInstallation"></a>
444444
## Validate your installation
@@ -684,14 +684,14 @@ This section documents the relevant values for Linux installations.
684684
CPU only:
685685

686686
<pre>
687-
https://storage.googleapis.com/tensorflow/linux/cpu/tensorflow-1.9.0rc0-cp27-none-linux_x86_64.whl
687+
https://storage.googleapis.com/tensorflow/linux/cpu/tensorflow-1.9.0rc1-cp27-none-linux_x86_64.whl
688688
</pre>
689689

690690

691691
GPU support:
692692

693693
<pre>
694-
https://storage.googleapis.com/tensorflow/linux/gpu/tensorflow_gpu-1.9.0rc0-cp27-none-linux_x86_64.whl
694+
https://storage.googleapis.com/tensorflow/linux/gpu/tensorflow_gpu-1.9.0rc1-cp27-none-linux_x86_64.whl
695695
</pre>
696696

697697
Note that GPU support requires the NVIDIA hardware and software described in
@@ -703,14 +703,14 @@ Note that GPU support requires the NVIDIA hardware and software described in
703703
CPU only:
704704

705705
<pre>
706-
https://storage.googleapis.com/tensorflow/linux/cpu/tensorflow-1.9.0rc0-cp34-cp34m-linux_x86_64.whl
706+
https://storage.googleapis.com/tensorflow/linux/cpu/tensorflow-1.9.0rc1-cp34-cp34m-linux_x86_64.whl
707707
</pre>
708708

709709

710710
GPU support:
711711

712712
<pre>
713-
https://storage.googleapis.com/tensorflow/linux/gpu/tensorflow_gpu-1.9.0rc0-cp34-cp34m-linux_x86_64.whl
713+
https://storage.googleapis.com/tensorflow/linux/gpu/tensorflow_gpu-1.9.0rc1-cp34-cp34m-linux_x86_64.whl
714714
</pre>
715715

716716
Note that GPU support requires the NVIDIA hardware and software described in
@@ -722,14 +722,14 @@ Note that GPU support requires the NVIDIA hardware and software described in
722722
CPU only:
723723

724724
<pre>
725-
https://storage.googleapis.com/tensorflow/linux/cpu/tensorflow-1.9.0rc0-cp35-cp35m-linux_x86_64.whl
725+
https://storage.googleapis.com/tensorflow/linux/cpu/tensorflow-1.9.0rc1-cp35-cp35m-linux_x86_64.whl
726726
</pre>
727727

728728

729729
GPU support:
730730

731731
<pre>
732-
https://storage.googleapis.com/tensorflow/linux/gpu/tensorflow_gpu-1.9.0rc0-cp35-cp35m-linux_x86_64.whl
732+
https://storage.googleapis.com/tensorflow/linux/gpu/tensorflow_gpu-1.9.0rc1-cp35-cp35m-linux_x86_64.whl
733733
</pre>
734734

735735

@@ -741,14 +741,14 @@ Note that GPU support requires the NVIDIA hardware and software described in
741741
CPU only:
742742

743743
<pre>
744-
https://storage.googleapis.com/tensorflow/linux/cpu/tensorflow-1.9.0rc0-cp36-cp36m-linux_x86_64.whl
744+
https://storage.googleapis.com/tensorflow/linux/cpu/tensorflow-1.9.0rc1-cp36-cp36m-linux_x86_64.whl
745745
</pre>
746746

747747

748748
GPU support:
749749

750750
<pre>
751-
https://storage.googleapis.com/tensorflow/linux/gpu/tensorflow_gpu-1.9.0rc0-cp36-cp36m-linux_x86_64.whl
751+
https://storage.googleapis.com/tensorflow/linux/gpu/tensorflow_gpu-1.9.0rc1-cp36-cp36m-linux_x86_64.whl
752752
</pre>
753753

754754

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.9.0rc0-py3-none-any.whl</b></pre>
122+
https://storage.googleapis.com/tensorflow/mac/cpu/tensorflow-1.9.0rc1-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.9.0rc0-py3-none-any.whl</b> </pre>
245+
https://storage.googleapis.com/tensorflow/mac/cpu/tensorflow-1.9.0rc1-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.9.0rc0-py2-none-any.whl</b></pre>
353+
https://storage.googleapis.com/tensorflow/mac/cpu/tensorflow-1.9.0rc1-py2-none-any.whl</b></pre>
354354

355355

356356
<a name="ValidateYourInstallation"></a>
@@ -522,13 +522,13 @@ The value you specify depends on your Python version.
522522

523523

524524
<pre>
525-
https://storage.googleapis.com/tensorflow/mac/cpu/tensorflow-1.9.0rc0-py2-none-any.whl
525+
https://storage.googleapis.com/tensorflow/mac/cpu/tensorflow-1.9.0rc1-py2-none-any.whl
526526
</pre>
527527

528528

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

531531

532532
<pre>
533-
https://storage.googleapis.com/tensorflow/mac/cpu/tensorflow-1.9.0rc0-py3-none-any.whl
533+
https://storage.googleapis.com/tensorflow/mac/cpu/tensorflow-1.9.0rc1-py3-none-any.whl
534534
</pre>

tensorflow/docs_src/install/install_sources.md

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

331-
for TensorFlow 1.9.0rc0 on Linux:
331+
for TensorFlow 1.9.0rc1 on Linux:
332332

333333
<pre>
334-
$ <b>sudo pip install /tmp/tensorflow_pkg/tensorflow-1.9.0rc0-py2-none-any.whl</b>
334+
$ <b>sudo pip install /tmp/tensorflow_pkg/tensorflow-1.9.0rc1-py2-none-any.whl</b>
335335
</pre>
336336

337337
## Validate your installation

tensorflow/tools/pip_package/setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@
4545
# This version string is semver compatible, but incompatible with pip.
4646
# For pip, we will remove all '-' characters from this string, and use the
4747
# result for pip.
48-
_VERSION = '1.9.0-rc0'
48+
_VERSION = '1.9.0-rc1'
4949

5050
REQUIRED_PACKAGES = [
5151
'absl-py >= 0.1.6',

0 commit comments

Comments
 (0)