Skip to content

Commit b77e3ae

Browse files
committed
fix(travis): fix to remove codecov from travis
1 parent efa16c6 commit b77e3ae

File tree

4 files changed

+7
-23
lines changed

4 files changed

+7
-23
lines changed

.bumpversion.cfg

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[bumpversion]
2-
current_version = 0.8.0
2+
current_version = 0.8.1
33
commit = True
44
message = Update version {current_version} -> {new_version}
55

.travis.yml

+1-4
Original file line numberDiff line numberDiff line change
@@ -35,13 +35,10 @@ jobs:
3535
include:
3636
- stage: Build-Test
3737
jdk: openjdk8
38-
install:
39-
- curl -s https://codecov.io/bash > $HOME/codecov-bash.sh && chmod +x $HOME/codecov-bash.sh
38+
install: true
4039
script:
4140
- build/setMavenVersion.sh
4241
- mvn verify -fae -DskipITs $MVN_ARGS
43-
after_success:
44-
- build/publishCodeCoverage.sh
4542

4643
- stage: Semantic-Release
4744
install:

README.md

+5-6
Original file line numberDiff line numberDiff line change
@@ -3,10 +3,9 @@
33
[![Javadoc](https://img.shields.io/static/v1?label=javadoc&message=latest&color=blue)](https://ibm.github.io/vpc-java-sdk/docs/latest)
44
[![Release](https://img.shields.io/github/v/release/IBM/vpc-java-sdk)](https://github.com/IBM/vpc-java-sdk/releases/latest)
55
[![License](https://img.shields.io/badge/License-Apache%202.0-blue.svg)](https://opensource.org/licenses/Apache-2.0)
6-
[![codecov](https://codecov.io/gh/IBM/vpc-java-sdk/branch/master/graph/badge.svg)](https://codecov.io/gh/IBM/vpc-java-sdk)
76
[![semantic-release](https://img.shields.io/badge/%20%20%F0%9F%93%A6%F0%9F%9A%80-semantic--release-e10079.svg)](https://github.com/semantic-release/semantic-release)
87

9-
# IBM Cloud VPC Java SDK Version 0.8.0
8+
# IBM Cloud VPC Java SDK Version 0.8.1
109
Java client library to interact with various [IBM Cloud VPC offerings](https://cloud.ibm.com/apidocs/vpc?code=java?).
1110

1211
This SDK uses [Semantic Versioning](https://semver.org), and as such there may be backward-incompatible changes for any new `0.y.z` version.
@@ -43,7 +42,7 @@ The IBM Cloud VPC Java SDK allows developers to programmatically interact with t
4342

4443
Service Name | Artifact Coordinates
4544
--- | ---
46-
[VPC](https://cloud.ibm.com/apidocs/vpc?code=java) | com.ibm.cloud:vpc:0.8.0
45+
[VPC](https://cloud.ibm.com/apidocs/vpc?code=java) | com.ibm.cloud:vpc:0.8.1
4746

4847
## Prerequisites
4948

@@ -54,7 +53,7 @@ Service Name | Artifact Coordinates
5453
* Java 8 or above.
5554

5655
## Installation
57-
The current version of this SDK is: 0.8.0
56+
The current version of this SDK is: 0.8.1
5857

5958
Each service's artifact coordinates are listed in the **Overview** table.
6059

@@ -75,13 +74,13 @@ artifact coordinates (group id, artifact id, and version) for the service, like
7574
<dependency>
7675
<groupId>com.ibm.cloud</groupId>
7776
<artifactId>vpc</artifactId>
78-
<version>0.8.0</version>
77+
<version>0.8.1</version>
7978
</dependency>
8079
```
8180

8281
##### Gradle
8382
```gradle
84-
'com.ibm.cloud:vpc:0.8.0'
83+
'com.ibm.cloud:vpc:0.8.1'
8584
```
8685

8786
## Using the SDK

build/publishCodeCoverage.sh

-12
This file was deleted.

0 commit comments

Comments
 (0)