diff --git a/agent/pom.xml b/agent/pom.xml index 3e82ec22f9b7..5f8b75729a80 100644 --- a/agent/pom.xml +++ b/agent/pom.xml @@ -4,7 +4,7 @@ com.navercorp.pinpoint pom - 1.1.2-SNAPSHOT + 1.1.2 pinpoint-agent diff --git a/bootstrap-core/pom.xml b/bootstrap-core/pom.xml index 39caf369b754..7b313fe401df 100644 --- a/bootstrap-core/pom.xml +++ b/bootstrap-core/pom.xml @@ -5,7 +5,7 @@ com.navercorp.pinpoint pom - 1.1.2-SNAPSHOT + 1.1.2 pinpoint-bootstrap-core diff --git a/bootstrap/pom.xml b/bootstrap/pom.xml index bbfe27edb5a3..1ce7bfb12661 100644 --- a/bootstrap/pom.xml +++ b/bootstrap/pom.xml @@ -5,7 +5,7 @@ com.navercorp.pinpoint pom - 1.1.2-SNAPSHOT + 1.1.2 pinpoint-bootstrap diff --git a/collector/pom.xml b/collector/pom.xml index 3a5f36f8e233..18b3b8d68cbc 100644 --- a/collector/pom.xml +++ b/collector/pom.xml @@ -4,7 +4,7 @@ com.navercorp.pinpoint pom - 1.1.2-SNAPSHOT + 1.1.2 pinpoint-collector diff --git a/commons-hbase/pom.xml b/commons-hbase/pom.xml index fee22d779010..7fac3a580f49 100644 --- a/commons-hbase/pom.xml +++ b/commons-hbase/pom.xml @@ -4,7 +4,7 @@ com.navercorp.pinpoint pom - 1.1.2-SNAPSHOT + 1.1.2 pinpoint-commons-hbase diff --git a/commons/pom.xml b/commons/pom.xml index 8ec2355bc498..4e878afc96ca 100644 --- a/commons/pom.xml +++ b/commons/pom.xml @@ -4,7 +4,7 @@ com.navercorp.pinpoint pom - 1.1.2-SNAPSHOT + 1.1.2 pinpoint-commons diff --git a/commons/src/main/java/com/navercorp/pinpoint/common/Version.java b/commons/src/main/java/com/navercorp/pinpoint/common/Version.java index fee435d5d060..538286c27d35 100644 --- a/commons/src/main/java/com/navercorp/pinpoint/common/Version.java +++ b/commons/src/main/java/com/navercorp/pinpoint/common/Version.java @@ -1,4 +1,4 @@ package com.navercorp.pinpoint.common; public final class Version { - public static final String VERSION = "1.1.2-SNAPSHOT"; + public static final String VERSION = "1.1.2"; } \ No newline at end of file diff --git a/pom.xml b/pom.xml index d9edae25ff05..2b15ac88b89a 100644 --- a/pom.xml +++ b/pom.xml @@ -7,7 +7,7 @@ com.navercorp.pinpoint pom - 1.1.2-SNAPSHOT + 1.1.2 pinpoint pom diff --git a/profiler-optional/pom.xml b/profiler-optional/pom.xml index 8895397588ab..92fbdaecbe0e 100644 --- a/profiler-optional/pom.xml +++ b/profiler-optional/pom.xml @@ -3,7 +3,7 @@ com.navercorp.pinpoint pom - 1.1.2-SNAPSHOT + 1.1.2 pinpoint-profiler-optional diff --git a/profiler/pom.xml b/profiler/pom.xml index c7d377c053c8..66386dac3743 100644 --- a/profiler/pom.xml +++ b/profiler/pom.xml @@ -4,7 +4,7 @@ com.navercorp.pinpoint pom - 1.1.2-SNAPSHOT + 1.1.2 pinpoint-profiler diff --git a/quickstart/conf/quickstart.properties b/quickstart/conf/quickstart.properties index 40aa6094f760..d3a56f4a4bee 100644 --- a/quickstart/conf/quickstart.properties +++ b/quickstart/conf/quickstart.properties @@ -1,6 +1,6 @@ # quickstart properties -quickstart.version=1.1.2-SNAPSHOT +quickstart.version=1.1.2 # quickstart-web properties quickstart.web.context.path=/ diff --git a/rpc/pom.xml b/rpc/pom.xml index a72f604785f6..00f9c702e8aa 100644 --- a/rpc/pom.xml +++ b/rpc/pom.xml @@ -7,7 +7,7 @@ com.navercorp.pinpoint pom - 1.1.2-SNAPSHOT + 1.1.2 pinpoint-rpc diff --git a/thrift/pom.xml b/thrift/pom.xml index 24bc83fe3fe8..223b71616637 100644 --- a/thrift/pom.xml +++ b/thrift/pom.xml @@ -4,7 +4,7 @@ com.navercorp.pinpoint pom - 1.1.2-SNAPSHOT + 1.1.2 pinpoint-thrift diff --git a/thrift/src/main/java/com/navercorp/pinpoint/thrift/io/TCommandTypeVersion.java b/thrift/src/main/java/com/navercorp/pinpoint/thrift/io/TCommandTypeVersion.java index e83f911d9388..2a91759df5a8 100644 --- a/thrift/src/main/java/com/navercorp/pinpoint/thrift/io/TCommandTypeVersion.java +++ b/thrift/src/main/java/com/navercorp/pinpoint/thrift/io/TCommandTypeVersion.java @@ -29,17 +29,27 @@ public enum TCommandTypeVersion { // Match with agent version V_1_0_2_SNAPSHOT("1.0.2-SNAPSHOT", TCommandType.RESULT, TCommandType.THREAD_DUMP), V_1_0_2("1.0.2", V_1_0_2_SNAPSHOT), + V_1_0_3_SNAPSHOT("1.0.3-SNAPSHOT", V_1_0_2, TCommandType.ECHO, TCommandType.TRANSFER, TCommandType.THREAD_DUMP_RESPONSE), V_1_0_3("1.0.3", V_1_0_3_SNAPSHOT), + V_1_0_4_SNAPSHOT("1.0.4-SNAPSHOT", V_1_0_3), V_1_0_4("1.0.4", V_1_0_4_SNAPSHOT), + V_1_0_5_SNAPSHOT("1.0.5-SNAPSHOT", V_1_0_4), V_1_0_5("1.0.5", V_1_0_5_SNAPSHOT), + + V_1_1_0_SNAPSHOT("1.1.0-SNAPSHOT", V_1_0_5), V_1_1_0("1.1.0", V_1_1_0_SNAPSHOT), + V_1_1_1_SNAPSHOT("1.1.1-SNAPSHOT", V_1_1_0), V_1_1_1("1.1.1", V_1_1_1_SNAPSHOT), + V_1_1_2_SNAPSHOT("1.1.2-SNAPSHOT", V_1_1_1), + V_1_1_2("1.1.2", V_1_1_2_SNAPSHOT), + + V_1_1_3_SNAPSHOT("1.1.3-SNAPSHOT", V_1_1_2), UNKNOWN("UNKNOWN"); diff --git a/web/pom.xml b/web/pom.xml index 37dc2ad78813..5a4ba4571525 100644 --- a/web/pom.xml +++ b/web/pom.xml @@ -4,7 +4,7 @@ com.navercorp.pinpoint pom - 1.1.2-SNAPSHOT + 1.1.2 pinpoint-web