Skip to content
This repository has been archived by the owner on Dec 23, 2023. It is now read-only.

Commit

Permalink
Bump release version. (#2088)
Browse files Browse the repository at this point in the history
  • Loading branch information
jsuereth authored Dec 17, 2021
1 parent 93d13d2 commit 1584507
Show file tree
Hide file tree
Showing 7 changed files with 13 additions and 13 deletions.
12 changes: 6 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -32,14 +32,14 @@ For Maven add to your `pom.xml`:
<dependency>
<groupId>io.opencensus</groupId>
<artifactId>opencensus-api</artifactId>
<version>0.29.0</version>
<version>0.30.0</version>
</dependency>
</dependencies>
```

For Gradle add to your dependencies:
```groovy
compile 'io.opencensus:opencensus-api:0.29.0'
compile 'io.opencensus:opencensus-api:0.30.0'
```

### Hello "OpenCensus" trace events
Expand Down Expand Up @@ -182,21 +182,21 @@ For Maven add to your `pom.xml`:
<dependency>
<groupId>io.opencensus</groupId>
<artifactId>opencensus-api</artifactId>
<version>0.29.0</version>
<version>0.30.0</version>
</dependency>
<dependency>
<groupId>io.opencensus</groupId>
<artifactId>opencensus-impl</artifactId>
<version>0.29.0</version>
<version>0.30.0</version>
<scope>runtime</scope>
</dependency>
</dependencies>
```

For Gradle add to your dependencies:
```groovy
compile 'io.opencensus:opencensus-api:0.29.0'
runtime 'io.opencensus:opencensus-impl:0.29.0'
compile 'io.opencensus:opencensus-api:0.30.0'
runtime 'io.opencensus:opencensus-impl:0.30.0'
```

### How to setup exporters?
Expand Down
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ subprojects {
}

group = "io.opencensus"
version = "0.30.0-SNAPSHOT" // CURRENT_OPENCENSUS_VERSION
version = "0.31.0-SNAPSHOT" // CURRENT_OPENCENSUS_VERSION

sourceCompatibility = 1.7
targetCompatibility = 1.7
Expand Down
4 changes: 2 additions & 2 deletions examples/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -31,9 +31,9 @@ repositories {
}

group = "io.opencensus"
version = "0.30.0-SNAPSHOT" // CURRENT_OPENCENSUS_VERSION
version = "0.31.0-SNAPSHOT" // CURRENT_OPENCENSUS_VERSION

def opencensusVersion = "0.28.3" // LATEST_OPENCENSUS_RELEASE_VERSION
def opencensusVersion = "0.30.0" // LATEST_OPENCENSUS_RELEASE_VERSION
def grpcVersion = "1.32.2" // CURRENT_GRPC_VERSION
def prometheusVersion = "0.6.0"
def jettyVersion = "9.4.17.v20190418"
Expand Down
2 changes: 1 addition & 1 deletion examples/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<groupId>io.opencensus</groupId>
<artifactId>opencensus-examples</artifactId>
<packaging>jar</packaging>
<version>0.30.0-SNAPSHOT</version><!-- CURRENT_OPENCENSUS_VERSION -->
<version>0.31.0-SNAPSHOT</version><!-- CURRENT_OPENCENSUS_VERSION -->
<name>opencensus-examples</name>
<url>http://maven.apache.org</url>
<properties>
Expand Down
2 changes: 1 addition & 1 deletion examples/spring/servlet/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ apply plugin: 'io.spring.dependency-management'
bootJar {
mainClassName = 'com.baeldung.Application'
baseName = 'opencensus-examples-spring-servlet'
version = "0.30.0-SNAPSHOT" // CURRENT_OPENCENSUS_VERSION
version = "0.31.0-SNAPSHOT" // CURRENT_OPENCENSUS_VERSION
}

sourceCompatibility = 1.8
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ final class OcAgentNodeUtils {

// The current version of the OpenCensus OC-Agent Exporter.
@VisibleForTesting
static final String OC_AGENT_EXPORTER_VERSION = "0.30.0-SNAPSHOT"; // CURRENT_OPENCENSUS_VERSION
static final String OC_AGENT_EXPORTER_VERSION = "0.31.0-SNAPSHOT"; // CURRENT_OPENCENSUS_VERSION

@Nullable
private static final io.opencensus.resource.Resource AUTO_DETECTED_RESOURCE =
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ final class OcAgentNodeUtils {

// The current version of the OpenCensus OC-Agent Exporter.
@VisibleForTesting
static final String OC_AGENT_EXPORTER_VERSION = "0.30.0-SNAPSHOT"; // CURRENT_OPENCENSUS_VERSION
static final String OC_AGENT_EXPORTER_VERSION = "0.31.0-SNAPSHOT"; // CURRENT_OPENCENSUS_VERSION

@Nullable
private static final io.opencensus.resource.Resource AUTO_DETECTED_RESOURCE =
Expand Down

0 comments on commit 1584507

Please sign in to comment.