Skip to content

Commit 8794a08

Browse files
committed
[skip ci] bump version to v0.1.3
1 parent 1ec8322 commit 8794a08

File tree

9 files changed

+10
-10
lines changed

9 files changed

+10
-10
lines changed

cresql/resql.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@
3737
#include <stdint.h>
3838
#include <stdlib.h>
3939

40-
#define RESQL_VERSION "0.1.3-latest"
40+
#define RESQL_VERSION "0.1.3"
4141

4242
#ifdef RESQL_HAVE_CONFIG_H
4343
#include "config.h"

goresql/client.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@ var errDiskFull = errors.New("resql: disk full")
8282
var errSessionDoesNotExist = errors.New("resql : session does not exist on the server")
8383

8484
// goresql version
85-
const Version = "0.1.3-latest"
85+
const Version = "0.1.3"
8686

8787
type client struct {
8888
name string

jresql/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77
<groupId>com.github.tezc</groupId>
88
<artifactId>resql</artifactId>
9-
<version>0.1.3-latest</version>
9+
<version>0.1.3</version>
1010
<packaging>jar</packaging>
1111

1212
<name>Resql Java Client</name>
@@ -32,7 +32,7 @@
3232
<scm>
3333
<connection>scm:git:git://github.com/tezc/resql.git</connection>
3434
<developerConnection>scm:git:ssh://github.com:tezc/resql.git</developerConnection>
35-
<url>http://github.com/tezc/resql/tree/v0.1.3-latest</url>
35+
<url>http://github.com/tezc/resql/tree/v0.1.3</url>
3636
</scm>
3737

3838
<properties>

jresql/src/main/java/resql/Resql.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@
3333

3434
public interface Resql extends AutoCloseable {
3535

36-
String VERSION = "0.1.3-latest";
36+
String VERSION = "0.1.3";
3737

3838
/**
3939
* Prepare Statement

src/rs.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@
4040

4141
// clang-format off
4242

43-
#define RS_VERSION "0.1.3-latest"
43+
#define RS_VERSION "0.1.3"
4444

4545
#ifndef RESQL_FILE_NAME
4646
#define RESQL_FILE_NAME "unknown file name"

util/benchmark/resql_benchmark.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,7 @@ struct resql_benchmark {
8888
pthread_mutex_t mtx;
8989
};
9090

91-
#define RESQL_BENCHMARK_VERSION "0.1.3-latest"
91+
#define RESQL_BENCHMARK_VERSION "0.1.3"
9292

9393
static struct resql_benchmark bench;
9494

util/cli/resql_cli.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ struct resql_cli {
5353
int count;
5454
};
5555

56-
#define RESQL_CLI_VERSION "0.1.3-latest"
56+
#define RESQL_CLI_VERSION "0.1.3"
5757

5858
static struct resql_cli s_cli;
5959
static struct resql *client;

util/docker/alpine/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ FROM alpine:3.13
22

33
RUN addgroup -g 11211 resql && adduser -D -u 11211 -G resql resql
44

5-
ENV RESQL_VERSION 0.1.3-latest
5+
ENV RESQL_VERSION 0.1.3
66

77
RUN set -x \
88
\

util/docker/debian/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ FROM debian:buster-slim
22

33
RUN groupadd --system --gid 11211 resql && useradd --system --gid resql --uid 11211 resql
44

5-
ENV RESQL_VERSION 0.1.3-latest
5+
ENV RESQL_VERSION 0.1.3
66

77
RUN set -eux; \
88
\

0 commit comments

Comments
 (0)