This repository was archived by the owner on Dec 23, 2023. It is now read-only.
File tree Expand file tree Collapse file tree 6 files changed +6
-6
lines changed
api/src/main/java/io/opencensus/common
exporters/trace/ocagent/src
main/java/io/opencensus/exporter/trace/ocagent
test/java/io/opencensus/exporter/trace/ocagent Expand file tree Collapse file tree 6 files changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -29,7 +29,7 @@ public final class OpenCensusLibraryInformation {
29
29
*
30
30
* @since 0.8
31
31
*/
32
- public static final String VERSION = "0.18.0-SNAPSHOT " ; // CURRENT_OPENCENSUS_VERSION
32
+ public static final String VERSION = "0.18.0" ; // CURRENT_OPENCENSUS_VERSION
33
33
34
34
private OpenCensusLibraryInformation () {}
35
35
}
Original file line number Diff line number Diff line change @@ -53,7 +53,7 @@ subprojects {
53
53
}
54
54
55
55
group = " io.opencensus"
56
- version = " 0.18.0-SNAPSHOT " // CURRENT_OPENCENSUS_VERSION
56
+ version = " 0.18.0" // CURRENT_OPENCENSUS_VERSION
57
57
58
58
sourceCompatibility = 1.6
59
59
targetCompatibility = 1.6
Original file line number Diff line number Diff line change @@ -23,7 +23,7 @@ repositories {
23
23
}
24
24
25
25
group = " io.opencensus"
26
- version = " 0.18.0-SNAPSHOT " // CURRENT_OPENCENSUS_VERSION
26
+ version = " 0.18.0" // CURRENT_OPENCENSUS_VERSION
27
27
28
28
def opencensusVersion = " 0.17.0" // LATEST_OPENCENSUS_RELEASE_VERSION
29
29
def grpcVersion = " 1.15.0" // CURRENT_GRPC_VERSION
Original file line number Diff line number Diff line change 4
4
<groupId >io.opencensus</groupId >
5
5
<artifactId >opencensus-examples</artifactId >
6
6
<packaging >jar</packaging >
7
- <version >0.18.0-SNAPSHOT </version ><!-- CURRENT_OPENCENSUS_VERSION -->
7
+ <version >0.18.0</version ><!-- CURRENT_OPENCENSUS_VERSION -->
8
8
<name >opencensus-examples</name >
9
9
<url >http://maven.apache.org</url >
10
10
<properties >
Original file line number Diff line number Diff line change @@ -38,7 +38,7 @@ final class OcAgentNodeUtils {
38
38
39
39
// The current version of the OpenCensus OC-Agent Exporter.
40
40
@ VisibleForTesting
41
- static final String OC_AGENT_EXPORTER_VERSION = "0.18.0-SNAPSHOT " ; // CURRENT_OPENCENSUS_VERSION
41
+ static final String OC_AGENT_EXPORTER_VERSION = "0.18.0" ; // CURRENT_OPENCENSUS_VERSION
42
42
43
43
@ Nullable
44
44
private static final io .opencensus .resource .Resource AUTO_DETECTED_RESOURCE =
Original file line number Diff line number Diff line change @@ -40,7 +40,7 @@ public class OcAgentNodeUtilsTest {
40
40
41
41
@ Test
42
42
public void testConstants () {
43
- assertThat (OC_AGENT_EXPORTER_VERSION ).isEqualTo ("0.18.0-SNAPSHOT " );
43
+ assertThat (OC_AGENT_EXPORTER_VERSION ).isEqualTo ("0.18.0" );
44
44
}
45
45
46
46
@ Test
You can’t perform that action at this time.
0 commit comments