We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 96bc73a commit b701ddcCopy full SHA for b701ddc
2 files changed
pom.xml
@@ -4,7 +4,7 @@
4
5
<groupId>dev.inspector</groupId>
6
<artifactId>agent</artifactId>
7
- <version>0.1.4</version>
+ <version>0.1.5</version>
8
9
<name>agent</name>
10
src/main/java/dev/inspector/agent/model/Config.java
@@ -7,10 +7,12 @@ public class Config {
private Boolean enabled = true;
private Integer maxEntries = 100;
- private String version = "1.9.10";
+ private String version;
11
12
public Config(String ingestionKey){
13
this.ingestionKey = ingestionKey;
14
+ this.version = "0.0.5";
15
+ this.url = "https://ingest.inspector.dev";
16
}
17
18
0 commit comments