Skip to content

Commit 16d73a1

Browse files
committed
Release version 2.1.5
1 parent 42b06cf commit 16d73a1

File tree

14 files changed

+19
-19
lines changed

14 files changed

+19
-19
lines changed

analytics/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<parent>
55
<groupId>timely</groupId>
66
<artifactId>timely</artifactId>
7-
<version>2.1.5-SNAPSHOT</version>
7+
<version>2.1.5</version>
88
</parent>
99
<artifactId>timely-analytics</artifactId>
1010
<!--

balancer/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<parent>
55
<groupId>timely</groupId>
66
<artifactId>timely</artifactId>
7-
<version>2.1.5-SNAPSHOT</version>
7+
<version>2.1.5</version>
88
</parent>
99
<artifactId>timely-balancer</artifactId>
1010
<description>Timely Balancer</description>

client/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,13 +4,13 @@
44
<parent>
55
<groupId>timely</groupId>
66
<artifactId>timely</artifactId>
7-
<version>2.1.5-SNAPSHOT</version>
7+
<version>2.1.5</version>
88
</parent>
99
<artifactId>timely-client</artifactId>
1010
<properties>
1111
<!-- PEP 440 compliant version gets substituted into src/main/python/template/setup.py -->
1212
<!-- use .dev0 instead of -SNAPSHOT -->
13-
<python.client.version>2.1.5.dev0</python.client.version>
13+
<python.client.version>2.1.5</python.client.version>
1414
</properties>
1515
<dependencies>
1616
<dependency>

collectd-nsq-plugin/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<parent>
55
<groupId>timely</groupId>
66
<artifactId>timely</artifactId>
7-
<version>2.1.5-SNAPSHOT</version>
7+
<version>2.1.5</version>
88
</parent>
99
<artifactId>collectd-nsq-plugin</artifactId>
1010
<dependencies>

collectd-plugin-parent/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<parent>
55
<groupId>timely</groupId>
66
<artifactId>timely</artifactId>
7-
<version>2.1.5-SNAPSHOT</version>
7+
<version>2.1.5</version>
88
</parent>
99
<artifactId>collectd-plugin-parent</artifactId>
1010
<dependencies>

collectd-plugin-parent/src/main/java/timely/collectd/plugin/CollectDPluginParent.java

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ protected void addTag(Map<String,String> m, String k, String v) {
7777
protected void addTag(Map<String,String> m, String kv) {
7878
if (kv != null && !kv.isBlank()) {
7979
String[] parts = kv.split("=");
80-
if (parts.length == 2 ) {
80+
if (parts.length == 2) {
8181
addTag(m, parts[0], parts[1]);
8282
}
8383
}
@@ -297,10 +297,10 @@ private void processInternal(ValueList vl, OutputStream out) {
297297
}
298298
Double value = vl.getValues().get(i).doubleValue();
299299
String tagString = tagMap.entrySet().stream().map(e -> e.getKey() + "=" + e.getValue()).collect(Collectors.joining(" "));
300-
300+
301301
if (metricName.isBlank() || timestamp == null || value == null) {
302-
logDebug(String.format("Not writing unhandled metric: plugin:%s pluginInstance:%s type:%s typeInstance:%s",
303-
plugin, pluginInstance, type, typeInstance));
302+
logDebug(String.format("Not writing unhandled metric: plugin:%s pluginInstance:%s type:%s typeInstance:%s", plugin, pluginInstance, type,
303+
typeInstance));
304304
} else {
305305
String datapoint = MessageFormat.format(PUT, metricName, timestamp.toString(), value.toString(), tagString);
306306
logDebug(String.format("Writing: %s", datapoint));

collectd-timely-plugin/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<parent>
55
<groupId>timely</groupId>
66
<artifactId>timely</artifactId>
7-
<version>2.1.5-SNAPSHOT</version>
7+
<version>2.1.5</version>
88
</parent>
99
<artifactId>collectd-timely-plugin</artifactId>
1010
<dependencies>

common/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<parent>
55
<groupId>timely</groupId>
66
<artifactId>timely</artifactId>
7-
<version>2.1.5-SNAPSHOT</version>
7+
<version>2.1.5</version>
88
</parent>
99
<artifactId>timely-common</artifactId>
1010
<dependencies>

grafana/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<parent>
55
<groupId>timely</groupId>
66
<artifactId>timely</artifactId>
7-
<version>2.1.5-SNAPSHOT</version>
7+
<version>2.1.5</version>
88
</parent>
99
<artifactId>timely-app</artifactId>
1010
<packaging>pom</packaging>

grafana/timely-app/dist/plugin.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,8 +28,8 @@
2828
}
2929
],
3030
"screenshots": [],
31-
"version": "2.1.5-SNAPSHOT",
32-
"updated": "2024-03-29"
31+
"version": "2.1.5",
32+
"updated": "2024-04-10"
3333
},
3434
"dependencies": {
3535
"classnames": "2.2.6",

0 commit comments

Comments
 (0)