Skip to content

Commit

Permalink
[skip ci] bump version to v0.1.3
Browse files Browse the repository at this point in the history
  • Loading branch information
tezc committed May 18, 2021
1 parent 1ec8322 commit 8794a08
Show file tree
Hide file tree
Showing 9 changed files with 10 additions and 10 deletions.
2 changes: 1 addition & 1 deletion cresql/resql.h
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@
#include <stdint.h>
#include <stdlib.h>

#define RESQL_VERSION "0.1.3-latest"
#define RESQL_VERSION "0.1.3"

#ifdef RESQL_HAVE_CONFIG_H
#include "config.h"
Expand Down
2 changes: 1 addition & 1 deletion goresql/client.go
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
4 changes: 2 additions & 2 deletions jresql/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

<groupId>com.github.tezc</groupId>
<artifactId>resql</artifactId>
<version>0.1.3-latest</version>
<version>0.1.3</version>
<packaging>jar</packaging>

<name>Resql Java Client</name>
Expand All @@ -32,7 +32,7 @@
<scm>
<connection>scm:git:git://github.com/tezc/resql.git</connection>
<developerConnection>scm:git:ssh://github.com:tezc/resql.git</developerConnection>
<url>http://github.com/tezc/resql/tree/v0.1.3-latest</url>
<url>http://github.com/tezc/resql/tree/v0.1.3</url>
</scm>

<properties>
Expand Down
2 changes: 1 addition & 1 deletion jresql/src/main/java/resql/Resql.java
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@

public interface Resql extends AutoCloseable {

String VERSION = "0.1.3-latest";
String VERSION = "0.1.3";

/**
* Prepare Statement
Expand Down
2 changes: 1 addition & 1 deletion src/rs.h
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down
2 changes: 1 addition & 1 deletion util/benchmark/resql_benchmark.c
Original file line number Diff line number Diff line change
Expand Up @@ -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;

Expand Down
2 changes: 1 addition & 1 deletion util/cli/resql_cli.c
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down
2 changes: 1 addition & 1 deletion util/docker/alpine/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -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 \
\
Expand Down
2 changes: 1 addition & 1 deletion util/docker/debian/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -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; \
\
Expand Down

0 comments on commit 8794a08

Please sign in to comment.