Skip to content
This repository was archived by the owner on Feb 5, 2025. It is now read-only.

Commit a9545d1

Browse files
authored
Merge pull request #296 from agoallikmaa/prepare-for-1.0.26
Prepare the 1.0.26 release
2 parents 566aba1 + a54670f commit a9545d1

File tree

9 files changed

+17
-17
lines changed

9 files changed

+17
-17
lines changed

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ If you're using Maven, add the following to your project's `pom.xml` file.
4141
<dependency>
4242
<groupId>com.signalfx.public</groupId>
4343
<artifactId>signalfx-codahale</artifactId>
44-
<version>1.0.25</version>
44+
<version>1.0.26</version>
4545
</dependency>
4646
```
4747

@@ -51,7 +51,7 @@ If you're using Maven, add the following to your project's `pom.xml` file.
5151
<dependency>
5252
<groupId>com.signalfx.public</groupId>
5353
<artifactId>signalfx-yammer</artifactId>
54-
<version>1.0.25</version>
54+
<version>1.0.26</version>
5555
</dependency>
5656
```
5757

@@ -62,13 +62,13 @@ If you're using SBT, add the following to your project's `build.sbt` file.
6262
* To work with Codahale 3.0.x:
6363

6464
```
65-
libraryDependencies += "com.signalfx.public" % "signalfx-codahale" % "1.0.25"
65+
libraryDependencies += "com.signalfx.public" % "signalfx-codahale" % "1.0.26"
6666
```
6767

6868
* To work with Yammer Metrics 2.0.x:
6969

7070
```
71-
libraryDependencies += "com.signalfx.public" % "signalfx-yammer" % "1.0.25"
71+
libraryDependencies += "com.signalfx.public" % "signalfx-yammer" % "1.0.26"
7272
```
7373

7474
### From source

pom.xml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<groupId>com.signalfx.public</groupId>
77
<artifactId>clients-parent</artifactId>
88
<name>SignalFx parent</name>
9-
<version>1.0.25</version>
9+
<version>1.0.26</version>
1010
<packaging>pom</packaging>
1111

1212
<description>
@@ -106,27 +106,27 @@
106106
<dependency>
107107
<groupId>com.signalfx.public</groupId>
108108
<artifactId>signalfx-protoc</artifactId>
109-
<version>1.0.25</version>
109+
<version>1.0.26</version>
110110
</dependency>
111111
<dependency>
112112
<groupId>com.signalfx.public</groupId>
113113
<artifactId>signalfx-codahale</artifactId>
114-
<version>1.0.25</version>
114+
<version>1.0.26</version>
115115
</dependency>
116116
<dependency>
117117
<groupId>com.signalfx.public</groupId>
118118
<artifactId>signalfx-yammer</artifactId>
119-
<version>1.0.25</version>
119+
<version>1.0.26</version>
120120
</dependency>
121121
<dependency>
122122
<groupId>com.signalfx.public</groupId>
123123
<artifactId>signalfx-commons-protoc-java</artifactId>
124-
<version>1.0.25</version>
124+
<version>1.0.26</version>
125125
</dependency>
126126
<dependency>
127127
<groupId>com.signalfx.public</groupId>
128128
<artifactId>signalfx-java</artifactId>
129-
<version>1.0.25</version>
129+
<version>1.0.26</version>
130130
</dependency>
131131

132132
<!-- shaded and included in the jar -->

signalfx-codahale/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
<parent>
88
<groupId>com.signalfx.public</groupId>
99
<artifactId>clients-parent</artifactId>
10-
<version>1.0.25</version>
10+
<version>1.0.26</version>
1111
</parent>
1212

1313
<artifactId>signalfx-codahale</artifactId>

signalfx-commons-protoc-java/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<parent>
77
<groupId>com.signalfx.public</groupId>
88
<artifactId>clients-parent</artifactId>
9-
<version>1.0.25</version>
9+
<version>1.0.26</version>
1010
</parent>
1111

1212
<artifactId>signalfx-commons-protoc-java</artifactId>

signalfx-java-examples/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
<groupId>com.signalfx.example</groupId>
66
<artifactId>signalfx.example</artifactId>
7-
<version>1.0.25</version>
7+
<version>1.0.26</version>
88
<packaging>jar</packaging>
99

1010
<name>SignalFx client library examples</name>

signalfx-java/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<parent>
77
<groupId>com.signalfx.public</groupId>
88
<artifactId>clients-parent</artifactId>
9-
<version>1.0.25</version>
9+
<version>1.0.26</version>
1010
</parent>
1111

1212
<artifactId>signalfx-java</artifactId>

signalfx-java/src/main/java/com/signalfx/connection/AbstractHttpReceiverConnection.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ public abstract class AbstractHttpReceiverConnection {
3131
protected static final Logger log = LoggerFactory.getLogger(AbstractHttpReceiverConnection.class);
3232

3333
// Do not modify this line. It is auto replaced to a version number.
34-
public static final String VERSION_NUMBER = "1.0.25";
34+
public static final String VERSION_NUMBER = "1.0.26";
3535
public static final String USER_AGENT = "SignalFx-java-client/" + VERSION_NUMBER;
3636
public static final String DISABLE_COMPRESSION_PROPERTY = "com.signalfx.public.java.disableHttpCompression";
3737

signalfx-protoc/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<parent>
77
<groupId>com.signalfx.public</groupId>
88
<artifactId>clients-parent</artifactId>
9-
<version>1.0.25</version>
9+
<version>1.0.26</version>
1010
</parent>
1111

1212
<artifactId>signalfx-protoc</artifactId>

signalfx-yammer/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
<parent>
88
<groupId>com.signalfx.public</groupId>
99
<artifactId>clients-parent</artifactId>
10-
<version>1.0.25</version>
10+
<version>1.0.26</version>
1111
</parent>
1212

1313
<artifactId>signalfx-yammer</artifactId>

0 commit comments

Comments
 (0)