Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Prepare release 1.0.40 #441

Merged
merged 1 commit into from Mar 21, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
8 changes: 4 additions & 4 deletions legacy-usage.md
Expand Up @@ -13,7 +13,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.39</version>
<version>1.0.40</version>
</dependency>
```

Expand All @@ -23,7 +23,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.39</version>
<version>1.0.40</version>
</dependency>
```

Expand All @@ -34,13 +34,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.39"
libraryDependencies += "com.signalfx.public" % "signalfx-codahale" % "1.0.40"
```

* To work with Yammer Metrics 2.0.x:

```
libraryDependencies += "com.signalfx.public" % "signalfx-yammer" % "1.0.39"
libraryDependencies += "com.signalfx.public" % "signalfx-yammer" % "1.0.40"
```

## From source
Expand Down
12 changes: 6 additions & 6 deletions pom.xml
Expand Up @@ -6,7 +6,7 @@
<groupId>com.signalfx.public</groupId>
<artifactId>clients-parent</artifactId>
<name>SignalFx parent</name>
<version>1.0.39</version>
<version>1.0.40</version>
<packaging>pom</packaging>

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

<!-- shaded and included in the jar -->
Expand Down
2 changes: 1 addition & 1 deletion signalfx-codahale/pom.xml
Expand Up @@ -7,7 +7,7 @@
<parent>
<groupId>com.signalfx.public</groupId>
<artifactId>clients-parent</artifactId>
<version>1.0.39</version>
<version>1.0.40</version>
</parent>

<artifactId>signalfx-codahale</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion signalfx-commons-protoc-java/pom.xml
Expand Up @@ -6,7 +6,7 @@
<parent>
<groupId>com.signalfx.public</groupId>
<artifactId>clients-parent</artifactId>
<version>1.0.39</version>
<version>1.0.40</version>
</parent>

<properties>
Expand Down
2 changes: 1 addition & 1 deletion signalfx-connection/pom.xml
Expand Up @@ -7,7 +7,7 @@
<parent>
<groupId>com.signalfx.public</groupId>
<artifactId>clients-parent</artifactId>
<version>1.0.39</version>
<version>1.0.40</version>
</parent>

<properties>
Expand Down
Expand Up @@ -29,7 +29,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.39";
public static final String VERSION_NUMBER = "1.0.40";
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-endpoint/pom.xml
Expand Up @@ -7,7 +7,7 @@
<parent>
<groupId>com.signalfx.public</groupId>
<artifactId>clients-parent</artifactId>
<version>1.0.39</version>
<version>1.0.40</version>
</parent>

<properties>
Expand Down
2 changes: 1 addition & 1 deletion signalfx-java/pom.xml
Expand Up @@ -6,7 +6,7 @@
<parent>
<groupId>com.signalfx.public</groupId>
<artifactId>clients-parent</artifactId>
<version>1.0.39</version>
<version>1.0.40</version>
</parent>

<artifactId>signalfx-java</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion signalfx-metrics/pom.xml
Expand Up @@ -6,7 +6,7 @@
<parent>
<groupId>com.signalfx.public</groupId>
<artifactId>clients-parent</artifactId>
<version>1.0.39</version>
<version>1.0.40</version>
</parent>

<properties>
Expand Down
2 changes: 1 addition & 1 deletion signalfx-protoc/pom.xml
Expand Up @@ -6,7 +6,7 @@
<parent>
<groupId>com.signalfx.public</groupId>
<artifactId>clients-parent</artifactId>
<version>1.0.39</version>
<version>1.0.40</version>
</parent>

<properties>
Expand Down
2 changes: 1 addition & 1 deletion signalfx-signalflow/pom.xml
Expand Up @@ -7,7 +7,7 @@
<parent>
<groupId>com.signalfx.public</groupId>
<artifactId>clients-parent</artifactId>
<version>1.0.39</version>
<version>1.0.40</version>
</parent>

<properties>
Expand Down
2 changes: 1 addition & 1 deletion signalfx-yammer/pom.xml
Expand Up @@ -7,7 +7,7 @@
<parent>
<groupId>com.signalfx.public</groupId>
<artifactId>clients-parent</artifactId>
<version>1.0.39</version>
<version>1.0.40</version>
</parent>

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