1
0
mirror of https://github.com/vbrandl/bind9-api.git synced 2025-07-16 04:55:47 +02:00

9 Commits

Author SHA1 Message Date
Valentin Brandl
8dd1a1b0fa Merge branch 'release/0.1.3' 2018-07-15 21:38:41 +02:00
Valentin Brandl
d87cbf9d0f Bump version numbers 2018-07-15 21:38:37 +02:00
Valentin Brandl
3af4ccf2d2 Fix before_deploy script 2018-07-15 21:38:11 +02:00
Valentin Brandl
d50bfb83dc Merge tag 'v0.1.2' into develop
v0.1.2
2018-07-15 21:26:46 +02:00
Valentin Brandl
811ff79a60 Merge branch 'release/0.1.2' 2018-07-15 21:26:39 +02:00
Valentin Brandl
106a7cad2b Bump version numbers 2018-07-15 21:26:36 +02:00
Valentin Brandl
cfda91af97 Actually execute before_deploy function 2018-07-15 20:58:08 +02:00
Valentin Brandl
33f9eedce1 Use rust environment in travis 2018-07-15 20:34:56 +02:00
Valentin Brandl
4302f7e70c Merge tag 'v0.1.1' into develop
v0.1.1
2018-07-15 20:30:50 +02:00
4 changed files with 10 additions and 9 deletions

View File

@@ -1,4 +1,5 @@
sudo: required
language: rust
services:
- docker
script:

View File

@@ -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
test -f Cargo.lock || cargo generate-lockfile
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

View File

@@ -1,6 +1,6 @@
[package]
name = "bind9-api-client"
version = "0.1.1"
version = "0.1.3"
authors = ["Valentin Brandl <vbrandl@riseup.net>"]
description = "Client for the BIND9 API"
license = "MIT/Apache-2.0"

View File

@@ -1,6 +1,6 @@
[package]
name = "bind9-api"
version = "0.1.1"
version = "0.1.3"
authors = ["Valentin Brandl <vbrandl@riseup.net>"]
description = "Web API to create, update and remove DNS entries in bind9"
license = "MIT/Apache-2.0"