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

Commit

Permalink
Bump version to 0.17.0
Browse files Browse the repository at this point in the history
  • Loading branch information
songy23 committed Nov 2, 2018
1 parent ffd2176 commit 2e1e589
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 6 deletions.
Expand Up @@ -29,7 +29,7 @@ public final class OpenCensusLibraryInformation {
*
* @since 0.8
*/
public static final String VERSION = "0.17.0-SNAPSHOT"; // CURRENT_OPENCENSUS_VERSION
public static final String VERSION = "0.17.0"; // CURRENT_OPENCENSUS_VERSION

private OpenCensusLibraryInformation() {}
}
2 changes: 1 addition & 1 deletion build.gradle
Expand Up @@ -49,7 +49,7 @@ subprojects {
}

group = "io.opencensus"
version = "0.17.0-SNAPSHOT" // CURRENT_OPENCENSUS_VERSION
version = "0.17.0" // CURRENT_OPENCENSUS_VERSION

sourceCompatibility = 1.6
targetCompatibility = 1.6
Expand Down
2 changes: 1 addition & 1 deletion examples/build.gradle
Expand Up @@ -23,7 +23,7 @@ repositories {
}

group = "io.opencensus"
version = "0.17.0-SNAPSHOT" // CURRENT_OPENCENSUS_VERSION
version = "0.17.0" // CURRENT_OPENCENSUS_VERSION

def opencensusVersion = "0.16.1" // LATEST_OPENCENSUS_RELEASE_VERSION
def grpcVersion = "1.13.1" // CURRENT_GRPC_VERSION
Expand Down
2 changes: 1 addition & 1 deletion examples/pom.xml
Expand Up @@ -4,7 +4,7 @@
<groupId>io.opencensus</groupId>
<artifactId>opencensus-examples</artifactId>
<packaging>jar</packaging>
<version>0.17.0-SNAPSHOT</version><!-- CURRENT_OPENCENSUS_VERSION -->
<version>0.17.0</version><!-- CURRENT_OPENCENSUS_VERSION -->
<name>opencensus-examples</name>
<url>http://maven.apache.org</url>
<properties>
Expand Down
Expand Up @@ -43,7 +43,7 @@ final class OcAgentNodeUtils {

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

@VisibleForTesting static final String RESOURCE_TYPE_ATTRIBUTE_KEY = "OPENCENSUS_SOURCE_TYPE";
@VisibleForTesting static final String RESOURCE_LABEL_ATTRIBUTE_KEY = "OPENCENSUS_SOURCE_LABELS";
Expand Down
Expand Up @@ -48,7 +48,7 @@ public class OcAgentNodeUtilsTest {

@Test
public void testConstants() {
assertThat(OC_AGENT_EXPORTER_VERSION).isEqualTo("0.17.0-SNAPSHOT");
assertThat(OC_AGENT_EXPORTER_VERSION).isEqualTo("0.17.0");
assertThat(RESOURCE_TYPE_ATTRIBUTE_KEY).isEqualTo("OPENCENSUS_SOURCE_TYPE");
assertThat(RESOURCE_LABEL_ATTRIBUTE_KEY).isEqualTo("OPENCENSUS_SOURCE_LABELS");
}
Expand Down

0 comments on commit 2e1e589

Please sign in to comment.