diff --git a/cresql/resql.h b/cresql/resql.h index 72f580f..117324d 100644 --- a/cresql/resql.h +++ b/cresql/resql.h @@ -37,7 +37,7 @@ #include #include -#define RESQL_VERSION "0.1.3-latest" +#define RESQL_VERSION "0.1.3" #ifdef RESQL_HAVE_CONFIG_H #include "config.h" diff --git a/goresql/client.go b/goresql/client.go index a7ddd9f..b3bde64 100644 --- a/goresql/client.go +++ b/goresql/client.go @@ -82,7 +82,7 @@ var errDiskFull = errors.New("resql: disk full") var errSessionDoesNotExist = errors.New("resql : session does not exist on the server") // goresql version -const Version = "0.1.3-latest" +const Version = "0.1.3" type client struct { name string diff --git a/jresql/pom.xml b/jresql/pom.xml index f8325df..b36ac64 100644 --- a/jresql/pom.xml +++ b/jresql/pom.xml @@ -6,7 +6,7 @@ com.github.tezc resql - 0.1.3-latest + 0.1.3 jar Resql Java Client @@ -32,7 +32,7 @@ scm:git:git://github.com/tezc/resql.git scm:git:ssh://github.com:tezc/resql.git - http://github.com/tezc/resql/tree/v0.1.3-latest + http://github.com/tezc/resql/tree/v0.1.3 diff --git a/jresql/src/main/java/resql/Resql.java b/jresql/src/main/java/resql/Resql.java index 60c5f73..d36bb22 100644 --- a/jresql/src/main/java/resql/Resql.java +++ b/jresql/src/main/java/resql/Resql.java @@ -33,7 +33,7 @@ public interface Resql extends AutoCloseable { - String VERSION = "0.1.3-latest"; + String VERSION = "0.1.3"; /** * Prepare Statement diff --git a/src/rs.h b/src/rs.h index 5b27710..d64aaa7 100644 --- a/src/rs.h +++ b/src/rs.h @@ -40,7 +40,7 @@ // clang-format off -#define RS_VERSION "0.1.3-latest" +#define RS_VERSION "0.1.3" #ifndef RESQL_FILE_NAME #define RESQL_FILE_NAME "unknown file name" diff --git a/util/benchmark/resql_benchmark.c b/util/benchmark/resql_benchmark.c index 170591a..350c3e7 100644 --- a/util/benchmark/resql_benchmark.c +++ b/util/benchmark/resql_benchmark.c @@ -88,7 +88,7 @@ struct resql_benchmark { pthread_mutex_t mtx; }; -#define RESQL_BENCHMARK_VERSION "0.1.3-latest" +#define RESQL_BENCHMARK_VERSION "0.1.3" static struct resql_benchmark bench; diff --git a/util/cli/resql_cli.c b/util/cli/resql_cli.c index d00c075..0a88d1d 100644 --- a/util/cli/resql_cli.c +++ b/util/cli/resql_cli.c @@ -53,7 +53,7 @@ struct resql_cli { int count; }; -#define RESQL_CLI_VERSION "0.1.3-latest" +#define RESQL_CLI_VERSION "0.1.3" static struct resql_cli s_cli; static struct resql *client; diff --git a/util/docker/alpine/Dockerfile b/util/docker/alpine/Dockerfile index 2f9f2c6..1226fb6 100644 --- a/util/docker/alpine/Dockerfile +++ b/util/docker/alpine/Dockerfile @@ -2,7 +2,7 @@ FROM alpine:3.13 RUN addgroup -g 11211 resql && adduser -D -u 11211 -G resql resql -ENV RESQL_VERSION 0.1.3-latest +ENV RESQL_VERSION 0.1.3 RUN set -x \ \ diff --git a/util/docker/debian/Dockerfile b/util/docker/debian/Dockerfile index b57f39a..831a43f 100644 --- a/util/docker/debian/Dockerfile +++ b/util/docker/debian/Dockerfile @@ -2,7 +2,7 @@ FROM debian:buster-slim RUN groupadd --system --gid 11211 resql && useradd --system --gid resql --uid 11211 resql -ENV RESQL_VERSION 0.1.3-latest +ENV RESQL_VERSION 0.1.3 RUN set -eux; \ \