Skip to content

Commit

Permalink
1.0.40 → 1.0.41. Changes: 1fee17a fix: update mvn signing keys (#64)
Browse files Browse the repository at this point in the history
85f68e5 fix: Update public key (#63)
2765771 fix: bring back developers (#62)
cde6ff8 feat: support java 17 & 21 (#61)
  • Loading branch information
CircleCI committed May 6, 2024
1 parent 1fee17a commit c8292c8
Show file tree
Hide file tree
Showing 6 changed files with 10 additions and 10 deletions.
2 changes: 1 addition & 1 deletion .bumpversion.cfg
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[bumpversion]
current_version = 1.0.40
current_version = 1.0.41
commit = True
tag = True

Expand Down
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# Java Tracer

[![CircleCI](https://dl.circleci.com/status-badge/img/gh/lumigo-io/java-tracer/tree/master.svg?style=svg)](https://dl.circleci.com/status-badge/redirect/gh/lumigo-io/java-tracer/tree/master)
![Version](https://img.shields.io/badge/version-1.0.40-green.svg)
![Version](https://img.shields.io/badge/version-1.0.41-green.svg)
[![codecov](https://codecov.io/gh/lumigo-io/java-tracer/branch/master/graph/badge.svg?token=D3IZ5hQwaQ)](https://codecov.io/gh/lumigo-io/java-tracer)

Supported Runtimes: Java 8, Java 11, Java 17, Java 21
Expand All @@ -24,13 +24,13 @@ Include lumigo java tracer dependency, for [Maven](https://maven.apache.org) pro
<dependency>
<groupId>io.lumigo</groupId>
<artifactId>java-tracer</artifactId>
<version>1.0.40</version>
<version>1.0.41</version>
</dependency>

<dependency>
<groupId>io.lumigo</groupId>
<artifactId>lumigo-agent</artifactId>
<version>1.0.40</version>
<version>1.0.41</version>
</dependency>
```

Expand Down
4 changes: 2 additions & 2 deletions agent/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
</properties>
<groupId>io.lumigo</groupId>
<artifactId>lumigo-agent</artifactId>
<version>1.0.40</version>
<version>1.0.41</version>

<name>Lumigo java tracer agent</name>
<description>The Lumigo java tracer for serverless functions</description>
Expand All @@ -22,7 +22,7 @@
<url>https://github.com/lumigo-io/java-tracer</url>
<connection>scm:git:https://github.com:lumigo-io/java-tracer.git</connection>
<developerConnection>scm:git:https://github.com:lumigo-io/java-tracer.git</developerConnection>
<tag>1.0.40</tag>
<tag>1.0.41</tag>
</scm>

<developers>
Expand Down
4 changes: 2 additions & 2 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

<groupId>io.lumigo</groupId>
<artifactId>java-tracer</artifactId>
<version>1.0.40</version>
<version>1.0.41</version>
<packaging>jar</packaging>

<name>Lumigo java tracer</name>
Expand All @@ -17,7 +17,7 @@
<url>https://github.com/lumigo-io/java-tracer</url>
<connection>scm:git:https://github.com:lumigo-io/java-tracer.git</connection>
<developerConnection>scm:git:https://github.com:lumigo-io/java-tracer.git</developerConnection>
<tag>1.0.40</tag>
<tag>1.0.41</tag>
</scm>

<developers>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ public Level getLogLevel() {
}

public String getLumigoTracerVersion() {
return "1.0.40";
return "1.0.41";
}

public Duration getLumigoTimeout() {
Expand Down
2 changes: 1 addition & 1 deletion src/main/resources/lumigo-version.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
version=1.0.40
version=1.0.41

0 comments on commit c8292c8

Please sign in to comment.