Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Updating version in README files. #1424

Merged
merged 1 commit into from
Nov 25, 2016
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -40,16 +40,16 @@ If you are using Maven, add this to your pom.xml file
<dependency>
<groupId>com.google.cloud</groupId>
<artifactId>google-cloud</artifactId>
<version>0.6.0</version>
<version>0.7.0</version>
</dependency>
```
If you are using Gradle, add this to your dependencies
```Groovy
compile 'com.google.cloud:google-cloud:0.6.0'
compile 'com.google.cloud:google-cloud:0.7.0'
```
If you are using SBT, add this to your dependencies
```Scala
libraryDependencies += "com.google.cloud" % "google-cloud" % "0.6.0"
libraryDependencies += "com.google.cloud" % "google-cloud" % "0.7.0"
```

Example Applications
Expand Down
6 changes: 3 additions & 3 deletions google-cloud-bigquery/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,16 +22,16 @@ If you are using Maven, add this to your pom.xml file
<dependency>
<groupId>com.google.cloud</groupId>
<artifactId>google-cloud-bigquery</artifactId>
<version>0.6.0</version>
<version>0.7.0</version>
</dependency>
```
If you are using Gradle, add this to your dependencies
```Groovy
compile 'com.google.cloud:google-cloud-bigquery:0.6.0'
compile 'com.google.cloud:google-cloud-bigquery:0.7.0'
```
If you are using SBT, add this to your dependencies
```Scala
libraryDependencies += "com.google.cloud" % "google-cloud-bigquery" % "0.6.0"
libraryDependencies += "com.google.cloud" % "google-cloud-bigquery" % "0.7.0"
```

Example Application
Expand Down
6 changes: 3 additions & 3 deletions google-cloud-compute/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,16 +22,16 @@ If you are using Maven, add this to your pom.xml file
<dependency>
<groupId>com.google.cloud</groupId>
<artifactId>google-cloud-compute</artifactId>
<version>0.6.0</version>
<version>0.7.0</version>
</dependency>
```
If you are using Gradle, add this to your dependencies
```Groovy
compile 'com.google.cloud:google-cloud-compute:0.6.0'
compile 'com.google.cloud:google-cloud-compute:0.7.0'
```
If you are using SBT, add this to your dependencies
```Scala
libraryDependencies += "com.google.cloud" % "google-cloud-compute" % "0.6.0"
libraryDependencies += "com.google.cloud" % "google-cloud-compute" % "0.7.0"
```

Example Application
Expand Down
6 changes: 3 additions & 3 deletions google-cloud-contrib/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,16 +25,16 @@ If you are using Maven, add this to your pom.xml file
<dependency>
<groupId>com.google.cloud</groupId>
<artifactId>google-cloud-contrib</artifactId>
<version>0.6.0</version>
<version>0.7.0</version>
</dependency>
```
If you are using Gradle, add this to your dependencies
```Groovy
compile 'com.google.cloud:google-cloud-contrib:0.6.0'
compile 'com.google.cloud:google-cloud-contrib:0.7.0'
```
If you are using SBT, add this to your dependencies
```Scala
libraryDependencies += "com.google.cloud" % "google-cloud-contrib" % "0.6.0"
libraryDependencies += "com.google.cloud" % "google-cloud-contrib" % "0.7.0"
```

### google-cloud-nio-examples
Expand Down
4 changes: 2 additions & 2 deletions google-cloud-contrib/google-cloud-nio-examples/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,12 +22,12 @@ To run this example:
4. Run the sample with:

```
java -cp google-cloud-contrib/google-cloud-nio/target/google-cloud-nio-0.6.1-SNAPSHOT-shaded.jar:google-cloud-contrib/google-cloud-nio-examples/target/google-cloud-nio-examples-0.6.1-SNAPSHOT.jar com.google.cloud.nio.examples.ListFilesystems
java -cp google-cloud-contrib/google-cloud-nio/target/google-cloud-nio-0.7.1-SNAPSHOT-shaded.jar:google-cloud-contrib/google-cloud-nio-examples/target/google-cloud-nio-examples-0.7.1-SNAPSHOT.jar com.google.cloud.nio.examples.ListFilesystems
```

Notice that it lists Google Cloud Storage, which it wouldn't if you ran it without the NIO jar:
```
java -cp google-cloud-contrib/google-cloud-nio-examples/target/google-cloud-nio-examples-0.6.1-SNAPSHOT.jar com.google.cloud.nio.examples.ListFilesystems
java -cp google-cloud-contrib/google-cloud-nio-examples/target/google-cloud-nio-examples-0.7.1-SNAPSHOT.jar com.google.cloud.nio.examples.ListFilesystems
```

The sample doesn't have anything about Google Cloud Storage in it. It gets that ability from the NIO
Expand Down
6 changes: 3 additions & 3 deletions google-cloud-contrib/google-cloud-nio/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,16 +26,16 @@ If you are using Maven, add this to your pom.xml file
<dependency>
<groupId>com.google.cloud</groupId>
<artifactId>google-cloud-nio</artifactId>
<version>0.6.0</version>
<version>0.7.0</version>
</dependency>
```
If you are using Gradle, add this to your dependencies
```Groovy
compile 'com.google.cloud:google-cloud-nio:0.6.0'
compile 'com.google.cloud:google-cloud-nio:0.7.0'
```
If you are using SBT, add this to your dependencies
```Scala
libraryDependencies += "com.google.cloud" % "google-cloud-nio" % "0.6.0"
libraryDependencies += "com.google.cloud" % "google-cloud-nio" % "0.7.0"
```

Example Applications
Expand Down
6 changes: 3 additions & 3 deletions google-cloud-core/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,16 +19,16 @@ If you are using Maven, add this to your pom.xml file
<dependency>
<groupId>com.google.cloud</groupId>
<artifactId>google-cloud-core</artifactId>
<version>0.6.0</version>
<version>0.7.0</version>
</dependency>
```
If you are using Gradle, add this to your dependencies
```Groovy
compile 'com.google.cloud:google-cloud-core:0.6.0'
compile 'com.google.cloud:google-cloud-core:0.7.0'
```
If you are using SBT, add this to your dependencies
```Scala
libraryDependencies += "com.google.cloud" % "google-cloud-core" % "0.6.0"
libraryDependencies += "com.google.cloud" % "google-cloud-core" % "0.7.0"
```

Troubleshooting
Expand Down
6 changes: 3 additions & 3 deletions google-cloud-datastore/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,16 +22,16 @@ If you are using Maven, add this to your pom.xml file
<dependency>
<groupId>com.google.cloud</groupId>
<artifactId>google-cloud-datastore</artifactId>
<version>0.6.0</version>
<version>0.7.0</version>
</dependency>
```
If you are using Gradle, add this to your dependencies
```Groovy
compile 'com.google.cloud:google-cloud-datastore:0.6.0'
compile 'com.google.cloud:google-cloud-datastore:0.7.0'
```
If you are using SBT, add this to your dependencies
```Scala
libraryDependencies += "com.google.cloud" % "google-cloud-datastore" % "0.6.0"
libraryDependencies += "com.google.cloud" % "google-cloud-datastore" % "0.7.0"
```

Example Application
Expand Down
6 changes: 3 additions & 3 deletions google-cloud-dns/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,16 +22,16 @@ If you are using Maven, add this to your pom.xml file
<dependency>
<groupId>com.google.cloud</groupId>
<artifactId>google-cloud-dns</artifactId>
<version>0.6.0</version>
<version>0.7.0</version>
</dependency>
```
If you are using Gradle, add this to your dependencies
```Groovy
compile 'com.google.cloud:google-cloud-dns:0.6.0'
compile 'com.google.cloud:google-cloud-dns:0.7.0'
```
If you are using SBT, add this to your dependencies
```Scala
libraryDependencies += "com.google.cloud" % "google-cloud-dns" % "0.6.0"
libraryDependencies += "com.google.cloud" % "google-cloud-dns" % "0.7.0"
```

Example Application
Expand Down
6 changes: 3 additions & 3 deletions google-cloud-examples/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,16 +19,16 @@ If you are using Maven, add this to your pom.xml file
<dependency>
<groupId>com.google.cloud</groupId>
<artifactId>google-cloud-examples</artifactId>
<version>0.6.0</version>
<version>0.7.0</version>
</dependency>
```
If you are using Gradle, add this to your dependencies
```Groovy
compile 'com.google.cloud:google-cloud-examples:0.6.0'
compile 'com.google.cloud:google-cloud-examples:0.7.0'
```
If you are using SBT, add this to your dependencies
```Scala
libraryDependencies += "com.google.cloud" % "google-cloud-examples" % "0.6.0"
libraryDependencies += "com.google.cloud" % "google-cloud-examples" % "0.7.0"
```

To run examples from your command line:
Expand Down
6 changes: 3 additions & 3 deletions google-cloud-logging/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,16 +26,16 @@ Add this to your pom.xml file
<dependency>
<groupId>com.google.cloud</groupId>
<artifactId>google-cloud-logging</artifactId>
<version>0.6.0</version>
<version>0.7.0</version>
</dependency>
```
If you are using Gradle, add this to your dependencies
```Groovy
compile 'com.google.cloud:google-cloud-logging:0.6.0'
compile 'com.google.cloud:google-cloud-logging:0.7.0'
```
If you are using SBT, add this to your dependencies
```Scala
libraryDependencies += "com.google.cloud" % "google-cloud-logging" % "0.6.0"
libraryDependencies += "com.google.cloud" % "google-cloud-logging" % "0.7.0"
```

Example Application
Expand Down
6 changes: 3 additions & 3 deletions google-cloud-pubsub/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,16 +26,16 @@ Add this to your pom.xml file
<dependency>
<groupId>com.google.cloud</groupId>
<artifactId>google-cloud-pubsub</artifactId>
<version>0.6.0</version>
<version>0.7.0</version>
</dependency>
```
If you are using Gradle, add this to your dependencies
```Groovy
compile 'com.google.cloud:google-cloud-pubsub:0.6.0'
compile 'com.google.cloud:google-cloud-pubsub:0.7.0'
```
If you are using SBT, add this to your dependencies
```Scala
libraryDependencies += "com.google.cloud" % "google-cloud-pubsub" % "0.6.0"
libraryDependencies += "com.google.cloud" % "google-cloud-pubsub" % "0.7.0"
```

Example Application
Expand Down
6 changes: 3 additions & 3 deletions google-cloud-resourcemanager/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,16 +22,16 @@ If you are using Maven, add this to your pom.xml file
<dependency>
<groupId>com.google.cloud</groupId>
<artifactId>google-cloud-resourcemanager</artifactId>
<version>0.6.0</version>
<version>0.7.0</version>
</dependency>
```
If you are using Gradle, add this to your dependencies
```Groovy
compile 'com.google.cloud:google-cloud-resourcemanager:0.6.0'
compile 'com.google.cloud:google-cloud-resourcemanager:0.7.0'
```
If you are using SBT, add this to your dependencies
```Scala
libraryDependencies += "com.google.cloud" % "google-cloud-resourcemanager" % "0.6.0"
libraryDependencies += "com.google.cloud" % "google-cloud-resourcemanager" % "0.7.0"
```

Example Application
Expand Down
6 changes: 3 additions & 3 deletions google-cloud-storage/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,16 +22,16 @@ If you are using Maven, add this to your pom.xml file
<dependency>
<groupId>com.google.cloud</groupId>
<artifactId>google-cloud-storage</artifactId>
<version>0.6.0</version>
<version>0.7.0</version>
</dependency>
```
If you are using Gradle, add this to your dependencies
```Groovy
compile 'com.google.cloud:google-cloud-storage:0.6.0'
compile 'com.google.cloud:google-cloud-storage:0.7.0'
```
If you are using SBT, add this to your dependencies
```Scala
libraryDependencies += "com.google.cloud" % "google-cloud-storage" % "0.6.0"
libraryDependencies += "com.google.cloud" % "google-cloud-storage" % "0.7.0"
```

Example Application
Expand Down
6 changes: 3 additions & 3 deletions google-cloud-translate/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,16 +22,16 @@ If you are using Maven, add this to your pom.xml file
<dependency>
<groupId>com.google.cloud</groupId>
<artifactId>google-cloud-translate</artifactId>
<version>0.6.0</version>
<version>0.7.0</version>
</dependency>
```
If you are using Gradle, add this to your dependencies
```Groovy
compile 'com.google.cloud:google-cloud-translate:0.6.0'
compile 'com.google.cloud:google-cloud-translate:0.7.0'
```
If you are using SBT, add this to your dependencies
```Scala
libraryDependencies += "com.google.cloud" % "google-cloud-translate" % "0.6.0"
libraryDependencies += "com.google.cloud" % "google-cloud-translate" % "0.7.0"
```

Example Application
Expand Down
6 changes: 3 additions & 3 deletions google-cloud/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -27,16 +27,16 @@ If you are using Maven, add this to your pom.xml file
<dependency>
<groupId>com.google.cloud</groupId>
<artifactId>google-cloud</artifactId>
<version>0.6.0</version>
<version>0.7.0</version>
</dependency>
```
If you are using Gradle, add this to your dependencies
```Groovy
compile 'com.google.cloud:google-cloud:0.6.0'
compile 'com.google.cloud:google-cloud:0.7.0'
```
If you are using SBT, add this to your dependencies
```Scala
libraryDependencies += "com.google.cloud" % "google-cloud" % "0.6.0"
libraryDependencies += "com.google.cloud" % "google-cloud" % "0.7.0"
```

Troubleshooting
Expand Down