From 3af4ccf2d2a5481731fdffa17bf63a68e8e2389e Mon Sep 17 00:00:00 2001 From: Valentin Brandl Date: Sun, 15 Jul 2018 21:38:11 +0200 Subject: [PATCH 1/2] Fix before_deploy script --- ci/before_deploy.sh | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/ci/before_deploy.sh b/ci/before_deploy.sh index 3d49089..44f03b8 100755 --- a/ci/before_deploy.sh +++ b/ci/before_deploy.sh @@ -3,13 +3,13 @@ set -ex main() { - local src=$(pwd) \ - stage=$src/deploy + local src=$(pwd) + local stage=$src/deploy - mkdir -p $deploy + mkdir -p $stage - cp target/x86_64-unknown-linux-musl/release/bind9-api $stage/bind9-api-${TRAVIS-TAG:1}-x86_64-musl - cp target/x86_64-unknown-linux-musl/release/bind9-api-client $stage/bind9-api-client-${TRAVIS-TAG:1}-x86_64-musl + cp target/x86_64-unknown-linux-musl/release/bind9-api $stage/bind9-api-${TRAVIS_TAG:1}-x86_64-musl + cp target/x86_64-unknown-linux-musl/release/bind9-api-client $stage/bind9-api-client-${TRAVIS_TAG:1}-x86_64-musl } main From d87cbf9d0fd6b13a5f88028b28f2a09f1d96df68 Mon Sep 17 00:00:00 2001 From: Valentin Brandl Date: Sun, 15 Jul 2018 21:38:37 +0200 Subject: [PATCH 2/2] Bump version numbers --- client/Cargo.toml | 2 +- server/Cargo.toml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/client/Cargo.toml b/client/Cargo.toml index 3892ffe..c66539f 100644 --- a/client/Cargo.toml +++ b/client/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "bind9-api-client" -version = "0.1.2" +version = "0.1.3" authors = ["Valentin Brandl "] description = "Client for the BIND9 API" license = "MIT/Apache-2.0" diff --git a/server/Cargo.toml b/server/Cargo.toml index 06047f0..66b4c1c 100644 --- a/server/Cargo.toml +++ b/server/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "bind9-api" -version = "0.1.2" +version = "0.1.3" authors = ["Valentin Brandl "] description = "Web API to create, update and remove DNS entries in bind9" license = "MIT/Apache-2.0"