Skip to content
This repository was archived by the owner on Dec 23, 2023. It is now read-only.
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
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ public final class OpenCensusLibraryInformation {
*
* @since 0.8
*/
public static final String VERSION = "0.28.1-SNAPSHOT"; // CURRENT_OPENCENSUS_VERSION
public static final String VERSION = "0.28.3-SNAPSHOT"; // CURRENT_OPENCENSUS_VERSION

private OpenCensusLibraryInformation() {}
}
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.28.1-SNAPSHOT" // CURRENT_OPENCENSUS_VERSION
version = "0.28.3-SNAPSHOT" // CURRENT_OPENCENSUS_VERSION

sourceCompatibility = 1.7
targetCompatibility = 1.7
Expand Down
2 changes: 1 addition & 1 deletion examples/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ repositories {
}

group = "io.opencensus"
version = "0.28.1-SNAPSHOT" // CURRENT_OPENCENSUS_VERSION
version = "0.28.3-SNAPSHOT" // CURRENT_OPENCENSUS_VERSION

def opencensusVersion = "0.27.1" // LATEST_OPENCENSUS_RELEASE_VERSION
def grpcVersion = "1.32.2" // CURRENT_GRPC_VERSION
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.28.1-SNAPSHOT</version><!-- CURRENT_OPENCENSUS_VERSION -->
<version>0.28.3-SNAPSHOT</version><!-- CURRENT_OPENCENSUS_VERSION -->
<name>opencensus-examples</name>
<url>http://maven.apache.org</url>
<properties>
Expand Down
4 changes: 2 additions & 2 deletions examples/spring/servlet/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ repositories {
}

group = "io.opencensus"
version = "0.28.1-SNAPSHOT" // CURRENT_OPENCENSUS_VERSION
version = "0.28.3-SNAPSHOT" // CURRENT_OPENCENSUS_VERSION

def opencensusVersion = "0.26.0" // LATEST_OPENCENSUS_RELEASE_VERSION
def prometheusVersion = "0.6.0"
Expand Down Expand Up @@ -85,7 +85,7 @@ apply plugin: 'io.spring.dependency-management'
bootJar {
mainClassName = 'com.baeldung.Application'
baseName = 'opencensus-examples-spring-servlet'
version = "0.28.1-SNAPSHOT" // CURRENT_OPENCENSUS_VERSION
version = "0.28.3-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.28.1-SNAPSHOT"; // CURRENT_OPENCENSUS_VERSION
static final String OC_AGENT_EXPORTER_VERSION = "0.28.3-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.28.1-SNAPSHOT"; // CURRENT_OPENCENSUS_VERSION
static final String OC_AGENT_EXPORTER_VERSION = "0.28.3-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 @@ -29,7 +29,7 @@
public final class TracerImpl extends Tracer {
private final SpanBuilderImpl.Options spanBuilderOptions;

TracerImpl(
public TracerImpl(
RandomHandler randomHandler,
RecordEventsSpanImpl.StartEndHandler startEndHandler,
Clock clock,
Expand Down