Skip to content

Commit

Permalink
Prepare for the 1.0.24 release
Browse files Browse the repository at this point in the history
  • Loading branch information
Mateusz Rzeszutek committed Sep 16, 2022
1 parent 9643edd commit 1e47eaf
Show file tree
Hide file tree
Showing 9 changed files with 18 additions and 18 deletions.
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ If you're using Maven, add the following to your project's `pom.xml` file.
<dependency>
<groupId>com.signalfx.public</groupId>
<artifactId>signalfx-codahale</artifactId>
<version>1.0.23</version>
<version>1.0.24</version>
</dependency>
```

Expand All @@ -51,7 +51,7 @@ If you're using Maven, add the following to your project's `pom.xml` file.
<dependency>
<groupId>com.signalfx.public</groupId>
<artifactId>signalfx-yammer</artifactId>
<version>1.0.23</version>
<version>1.0.24</version>
</dependency>
```

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

```
libraryDependencies += "com.signalfx.public" % "signalfx-codahale" % "1.0.23"
libraryDependencies += "com.signalfx.public" % "signalfx-codahale" % "1.0.24"
```

* To work with Yammer Metrics 2.0.x:

```
libraryDependencies += "com.signalfx.public" % "signalfx-yammer" % "1.0.23"
libraryDependencies += "com.signalfx.public" % "signalfx-yammer" % "1.0.24"
```

### From source
Expand Down
14 changes: 7 additions & 7 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<groupId>com.signalfx.public</groupId>
<artifactId>clients-parent</artifactId>
<name>SignalFx parent</name>
<version>1.0.23</version>
<version>1.0.24</version>
<packaging>pom</packaging>

<description>
Expand Down Expand Up @@ -106,27 +106,27 @@
<dependency>
<groupId>com.signalfx.public</groupId>
<artifactId>signalfx-protoc</artifactId>
<version>1.0.23</version>
<version>1.0.24</version>
</dependency>
<dependency>
<groupId>com.signalfx.public</groupId>
<artifactId>signalfx-codahale</artifactId>
<version>1.0.23</version>
<version>1.0.24</version>
</dependency>
<dependency>
<groupId>com.signalfx.public</groupId>
<artifactId>signalfx-yammer</artifactId>
<version>1.0.23</version>
<version>1.0.24</version>
</dependency>
<dependency>
<groupId>com.signalfx.public</groupId>
<artifactId>signalfx-commons-protoc-java</artifactId>
<version>1.0.23</version>
<version>1.0.24</version>
</dependency>
<dependency>
<groupId>com.signalfx.public</groupId>
<artifactId>signalfx-java</artifactId>
<version>1.0.23</version>
<version>1.0.24</version>
</dependency>

<!-- shaded and included in the jar -->
Expand Down Expand Up @@ -375,6 +375,6 @@
<module>signalfx-commons-protoc-java</module>
<module>signalfx-codahale</module>
<module>signalfx-yammer</module>
<module>micrometer-registry-signalfx</module>
<!-- <module>micrometer-registry-signalfx</module>-->
</modules>
</project>
2 changes: 1 addition & 1 deletion signalfx-codahale/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
<parent>
<groupId>com.signalfx.public</groupId>
<artifactId>clients-parent</artifactId>
<version>1.0.23</version>
<version>1.0.24</version>
</parent>

<artifactId>signalfx-codahale</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion signalfx-commons-protoc-java/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<parent>
<groupId>com.signalfx.public</groupId>
<artifactId>clients-parent</artifactId>
<version>1.0.23</version>
<version>1.0.24</version>
</parent>

<artifactId>signalfx-commons-protoc-java</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion signalfx-java-examples/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

<groupId>com.signalfx.example</groupId>
<artifactId>signalfx.example</artifactId>
<version>1.0.23</version>
<version>1.0.24</version>
<packaging>jar</packaging>

<name>SignalFx client library examples</name>
Expand Down
2 changes: 1 addition & 1 deletion signalfx-java/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<parent>
<groupId>com.signalfx.public</groupId>
<artifactId>clients-parent</artifactId>
<version>1.0.23</version>
<version>1.0.24</version>
</parent>

<artifactId>signalfx-java</artifactId>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ public abstract class AbstractHttpReceiverConnection {
protected static final Logger log = LoggerFactory.getLogger(AbstractHttpReceiverConnection.class);

// Do not modify this line. It is auto replaced to a version number.
public static final String VERSION_NUMBER = "1.0.23";
public static final String VERSION_NUMBER = "1.0.24";
public static final String USER_AGENT = "SignalFx-java-client/" + VERSION_NUMBER;
public static final String DISABLE_COMPRESSION_PROPERTY = "com.signalfx.public.java.disableHttpCompression";

Expand Down
2 changes: 1 addition & 1 deletion signalfx-protoc/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<parent>
<groupId>com.signalfx.public</groupId>
<artifactId>clients-parent</artifactId>
<version>1.0.23</version>
<version>1.0.24</version>
</parent>

<artifactId>signalfx-protoc</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion signalfx-yammer/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
<parent>
<groupId>com.signalfx.public</groupId>
<artifactId>clients-parent</artifactId>
<version>1.0.23</version>
<version>1.0.24</version>
</parent>

<artifactId>signalfx-yammer</artifactId>
Expand Down

0 comments on commit 1e47eaf

Please sign in to comment.