dev.restate.sdk.version.Version Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of sdk-common Show documentation
Show all versions of sdk-common Show documentation
Common interfaces of the Restate SDK
The newest version!
package dev.restate.sdk.version;
public final class Version {
private Version() {}
public static final String VERSION = "1.1.0";
public static final String GIT_HASH = "f2bc5951";
public static final String X_RESTATE_SERVER = "restate-sdk-java/" + VERSION + "_" + GIT_HASH;
}