Skip to content

Commit

Permalink
Merge pull request #941 from koo-taejin/1.1.x
Browse files Browse the repository at this point in the history
1.1.1 release #937
  • Loading branch information
koo-taejin committed Sep 8, 2015
2 parents d010020 + a253eec commit 9dca6d9
Show file tree
Hide file tree
Showing 15 changed files with 17 additions and 15 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.1-SNAPSHOT</version>
<version>1.1.1</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.1-SNAPSHOT</version>
<version>1.1.1</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.1-SNAPSHOT</version>
<version>1.1.1</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.1-SNAPSHOT</version>
<version>1.1.1</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.1-SNAPSHOT</version>
<version>1.1.1</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.1-SNAPSHOT</version>
<version>1.1.1</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.1-SNAPSHOT";
public static final String VERSION = "1.1.1";
}
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.1-SNAPSHOT</version>
<version>1.1.1</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.1-SNAPSHOT</version>
<version>1.1.1</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.1-SNAPSHOT</version>
<version>1.1.1</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.1-SNAPSHOT
quickstart.version=1.1.1

# 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.1-SNAPSHOT</version>
<version>1.1.1</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.1-SNAPSHOT</version>
<version>1.1.1</version>
</parent>

<artifactId>pinpoint-thrift</artifactId>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,9 @@ public enum TCommandTypeVersion {
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),


UNKNOWN("UNKNOWN");

private final String versionName;
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.1-SNAPSHOT</version>
<version>1.1.1</version>
</parent>

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

0 comments on commit 9dca6d9

Please # to comment.