Skip to content

Commit

Permalink
Merge pull request #1252 from koo-taejin/#1250
Browse files Browse the repository at this point in the history
1.1.2 release #1250
  • Loading branch information
koo-taejin committed Nov 24, 2015
2 parents c6cbebb + d740eec commit f812022
Show file tree
Hide file tree
Showing 15 changed files with 24 additions and 14 deletions.
2 changes: 1 addition & 1 deletion agent/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<parent>
<groupId>com.navercorp.pinpoint</groupId>
<artifactId>pom</artifactId>
<version>1.1.2-SNAPSHOT</version>
<version>1.1.2</version>
</parent>

<artifactId>pinpoint-agent</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion bootstrap-core/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<parent>
<groupId>com.navercorp.pinpoint</groupId>
<artifactId>pom</artifactId>
<version>1.1.2-SNAPSHOT</version>
<version>1.1.2</version>
</parent>

<artifactId>pinpoint-bootstrap-core</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion bootstrap/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<parent>
<groupId>com.navercorp.pinpoint</groupId>
<artifactId>pom</artifactId>
<version>1.1.2-SNAPSHOT</version>
<version>1.1.2</version>
</parent>

<artifactId>pinpoint-bootstrap</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion collector/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<parent>
<groupId>com.navercorp.pinpoint</groupId>
<artifactId>pom</artifactId>
<version>1.1.2-SNAPSHOT</version>
<version>1.1.2</version>
</parent>

<artifactId>pinpoint-collector</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion commons-hbase/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<parent>
<groupId>com.navercorp.pinpoint</groupId>
<artifactId>pom</artifactId>
<version>1.1.2-SNAPSHOT</version>
<version>1.1.2</version>
</parent>

<artifactId>pinpoint-commons-hbase</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion commons/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<parent>
<groupId>com.navercorp.pinpoint</groupId>
<artifactId>pom</artifactId>
<version>1.1.2-SNAPSHOT</version>
<version>1.1.2</version>
</parent>

<artifactId>pinpoint-commons</artifactId>
Expand Down
Original file line number Diff line number Diff line change
@@ -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";
}
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
</organization>
<groupId>com.navercorp.pinpoint</groupId>
<artifactId>pom</artifactId>
<version>1.1.2-SNAPSHOT</version>
<version>1.1.2</version>
<name>pinpoint</name>
<packaging>pom</packaging>

Expand Down
2 changes: 1 addition & 1 deletion profiler-optional/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<parent>
<groupId>com.navercorp.pinpoint</groupId>
<artifactId>pom</artifactId>
<version>1.1.2-SNAPSHOT</version>
<version>1.1.2</version>
</parent>

<artifactId>pinpoint-profiler-optional</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion profiler/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<parent>
<groupId>com.navercorp.pinpoint</groupId>
<artifactId>pom</artifactId>
<version>1.1.2-SNAPSHOT</version>
<version>1.1.2</version>
</parent>

<artifactId>pinpoint-profiler</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion quickstart/conf/quickstart.properties
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@

# quickstart properties
quickstart.version=1.1.2-SNAPSHOT
quickstart.version=1.1.2

# quickstart-web properties
quickstart.web.context.path=/
Expand Down
2 changes: 1 addition & 1 deletion rpc/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
<parent>
<groupId>com.navercorp.pinpoint</groupId>
<artifactId>pom</artifactId>
<version>1.1.2-SNAPSHOT</version>
<version>1.1.2</version>
</parent>

<artifactId>pinpoint-rpc</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion thrift/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<parent>
<groupId>com.navercorp.pinpoint</groupId>
<artifactId>pom</artifactId>
<version>1.1.2-SNAPSHOT</version>
<version>1.1.2</version>
</parent>

<artifactId>pinpoint-thrift</artifactId>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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");

Expand Down
2 changes: 1 addition & 1 deletion web/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<parent>
<groupId>com.navercorp.pinpoint</groupId>
<artifactId>pom</artifactId>
<version>1.1.2-SNAPSHOT</version>
<version>1.1.2</version>
</parent>

<artifactId>pinpoint-web</artifactId>
Expand Down

0 comments on commit f812022

Please # to comment.