Skip to content

Commit 69d0788

Browse files
author
CircleCI
committed
1.0.48 → 1.0.49. Changes: fb27b5a hotfix: bump version (#77)
bf0b2cd hotfix: config credentials (#76) 39a9013 hotfix: use new maven access token (#75) 0773071 fix: version release (#74) 2f74bf6 feat: support auto-trace with layer (#73)
1 parent fb27b5a commit 69d0788

File tree

7 files changed

+14
-14
lines changed

7 files changed

+14
-14
lines changed

.bumpversion.cfg

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[bumpversion]
2-
current_version = 1.0.48
2+
current_version = 1.0.49
33
commit = True
44
tag = True
55

README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# Java Tracer
22

33
[![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)
4-
![Version](https://img.shields.io/badge/version-1.0.48-green.svg)
4+
![Version](https://img.shields.io/badge/version-1.0.49-green.svg)
55
[![codecov](https://codecov.io/gh/lumigo-io/java-tracer/branch/master/graph/badge.svg?token=D3IZ5hQwaQ)](https://codecov.io/gh/lumigo-io/java-tracer)
66

77
Supported Runtimes: Java 8, Java 11, Java 17, Java 21
@@ -25,13 +25,13 @@ For [Maven](https://maven.apache.org) projects, use:
2525
<dependency>
2626
<groupId>io.lumigo</groupId>
2727
<artifactId>java-tracer</artifactId>
28-
<version>1.0.48</version>
28+
<version>1.0.49</version>
2929
</dependency>
3030

3131
<dependency>
3232
<groupId>io.lumigo</groupId>
3333
<artifactId>lumigo-agent</artifactId>
34-
<version>1.0.48</version>
34+
<version>1.0.49</version>
3535
</dependency>
3636
```
3737

@@ -48,8 +48,8 @@ repositories {
4848

4949
```groovy
5050
dependencies {
51-
implementation 'io.lumigo:java-tracer:1.0.48'
52-
implementation 'io.lumigo:lumigo-agent:1.0.48'
51+
implementation 'io.lumigo:java-tracer:1.0.49'
52+
implementation 'io.lumigo:lumigo-agent:1.0.49'
5353
}
5454
```
5555

agent/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
</properties>
1313
<groupId>io.lumigo</groupId>
1414
<artifactId>lumigo-agent</artifactId>
15-
<version>1.0.48</version>
15+
<version>1.0.49</version>
1616

1717
<name>Lumigo java tracer agent</name>
1818
<description>The Lumigo java tracer for serverless functions</description>
@@ -22,7 +22,7 @@
2222
<url>https://github.com/lumigo-io/java-tracer</url>
2323
<connection>scm:git:https://github.com:lumigo-io/java-tracer.git</connection>
2424
<developerConnection>scm:git:https://github.com:lumigo-io/java-tracer.git</developerConnection>
25-
<tag>1.0.48</tag>
25+
<tag>1.0.49</tag>
2626
</scm>
2727

2828
<developers>

pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<modelVersion>4.0.0</modelVersion>
44
<groupId>io.lumigo</groupId>
55
<artifactId>java-tracer</artifactId>
6-
<version>1.0.48</version>
6+
<version>1.0.49</version>
77
<packaging>jar</packaging>
88
<name>Lumigo java tracer</name>
99
<description>The Lumigo java tracer for serverless functions</description>
@@ -12,7 +12,7 @@
1212
<url>https://github.com/lumigo-io/java-tracer</url>
1313
<connection>scm:git:https://github.com:lumigo-io/java-tracer.git</connection>
1414
<developerConnection>scm:git:https://github.com:lumigo-io/java-tracer.git</developerConnection>
15-
<tag>1.0.48</tag>
15+
<tag>1.0.49</tag>
1616
</scm>
1717
<developers>
1818
<developer>

scripts/prepare_layer_files.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,5 +7,5 @@ MVN_DEFAULT_FLAGS="-Dhttp.keepAlive=false -Dmaven.wagon.http.pool=false -Dmaven.
77
mvn "$MVN_DEFAULT_FLAGS" -Dmaven.test.skip=true -Dfindbugs.skip=true -DincludeShade=true clean package --quiet
88
mvn "$MVN_DEFAULT_FLAGS" -f agent/pom.xml clean package --quiet
99

10-
cp target/java-tracer-1.0.48.jar lumigo-java/lumigo-tracer.jar
11-
cp agent/target/lumigo-agent-1.0.48.jar lumigo-java/lumigo-agent.jar
10+
cp target/java-tracer-1.0.49.jar lumigo-java/lumigo-tracer.jar
11+
cp agent/target/lumigo-agent-1.0.49.jar lumigo-java/lumigo-agent.jar

src/main/java/io/lumigo/core/configuration/Configuration.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,7 @@ public Level getLogLevel() {
8686
}
8787

8888
public String getLumigoTracerVersion() {
89-
return "1.0.48";
89+
return "1.0.49";
9090
}
9191

9292
public Duration getLumigoTimeout() {
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
version=1.0.48
1+
version=1.0.49

0 commit comments

Comments
 (0)