Skip to content

Commit

Permalink
build: release version 1.8.0
Browse files Browse the repository at this point in the history
  • Loading branch information
ChrisKujawa committed Aug 21, 2023
1 parent c5046cf commit 7f1c7d6
Show file tree
Hide file tree
Showing 5 changed files with 22 additions and 21 deletions.
4 changes: 2 additions & 2 deletions backend/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -21,13 +21,13 @@
<parent>
<groupId>io.zell</groupId>
<artifactId>zdb</artifactId>
<version>1.8.0-SNAPSHOT</version>
<version>1.8.0</version>
<relativePath>../pom.xml</relativePath>
</parent>

<modelVersion>4.0.0</modelVersion>
<artifactId>backend</artifactId>
<version>1.8.0-SNAPSHOT</version>
<version>1.8.0</version>
<packaging>jar</packaging>
<name>ZDB Backend</name>

Expand Down
6 changes: 3 additions & 3 deletions cli/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -23,12 +23,12 @@
<parent>
<groupId>io.zell</groupId>
<artifactId>zdb</artifactId>
<version>1.8.0-SNAPSHOT</version>
<version>1.8.0</version>
<relativePath>../pom.xml</relativePath>
</parent>

<artifactId>cli</artifactId>
<version>1.8.0-SNAPSHOT</version>
<version>1.8.0</version>
<name>ZDB CLI</name>
<packaging>jar</packaging>

Expand Down Expand Up @@ -70,7 +70,7 @@
<dependency>
<groupId>io.zell</groupId>
<artifactId>backend</artifactId>
<version>1.8.0-SNAPSHOT</version>
<version>1.8.0</version>
<!-- <scope>compile</scope>-->
</dependency>
</dependencies>
Expand Down
24 changes: 13 additions & 11 deletions cli/src/main/java/io/zell/zdb/LogPrintCommand.java
Original file line number Diff line number Diff line change
Expand Up @@ -42,27 +42,29 @@ public enum Format {

@Option(
names = {"--from", "--fromPosition"},
description = "Option to skip the begin of log and only print from the given position." +
" Note this is on best effort basis, since engine records are written in batches." +
" There might be some more records printed before the given position (part of the written batch).",
description =
"Option to skip the begin of log and only print from the given position."
+ " Note this is on best effort basis, since engine records are written in batches."
+ " There might be some more records printed before the given position (part of the written batch).",
defaultValue = "0")
private long fromPosition;

@Option(
names = {"--to", "--toPosition"},
description = "Option to set a limit to print the log only to the given position." +
" Note this is on best effort basis, since engine records are written in batches." +
" There might be some more records printed after the given position (part of the written batch).",
description =
"Option to set a limit to print the log only to the given position."
+ " Note this is on best effort basis, since engine records are written in batches."
+ " There might be some more records printed after the given position (part of the written batch).",
defaultValue = Long.MAX_VALUE + "")
private long toPosition;

@Option(
names = {"--instanceKey"},
description = "Filter to print only records which are part the specified process instance." +
" Note this is on best effort basis, since engine records are written in batches." +
" There might be some records printed which do not have an process instance key assigned." +
" RaftRecords are completely skipped, if this filter is applied."
,
description =
"Filter to print only records which are part the specified process instance."
+ " Note this is on best effort basis, since engine records are written in batches."
+ " There might be some records printed which do not have an process instance key assigned."
+ " RaftRecords are completely skipped, if this filter is applied.",
defaultValue = "0")
private long instanceKey;

Expand Down
7 changes: 3 additions & 4 deletions cli/src/main/java/io/zell/zdb/StateCommand.java
Original file line number Diff line number Diff line change
Expand Up @@ -17,14 +17,13 @@

import io.camunda.zeebe.protocol.ZbColumnFamilies;
import io.zell.zdb.state.Experimental;
import picocli.CommandLine;
import picocli.CommandLine.Command;
import picocli.CommandLine.Option;

import java.nio.file.Path;
import java.util.HexFormat;
import java.util.concurrent.Callable;
import java.util.concurrent.atomic.AtomicInteger;
import picocli.CommandLine;
import picocli.CommandLine.Command;
import picocli.CommandLine.Option;

// THIS IS IN ALPHA STATE
@Command(
Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
<modelVersion>4.0.0</modelVersion>
<groupId>io.zell</groupId>
<artifactId>zdb</artifactId>
<version>1.8.0-SNAPSHOT</version>
<version>1.8.0</version>
<packaging>pom</packaging>
<name>ZDB</name>
<inceptionYear>2021</inceptionYear>
Expand Down

0 comments on commit 7f1c7d6

Please sign in to comment.