From 65c2e02409ab4cfdb894ebd85f40111ed2fdbdbc Mon Sep 17 00:00:00 2001 From: Sevag Hanssian Date: Wed, 21 Feb 2018 16:47:57 -0800 Subject: [PATCH] Version bumps, publish from docker --- Cargo.toml | 4 ++-- GNUmakefile | 3 +++ stream-delimit/Cargo.toml | 2 +- 3 files changed, 6 insertions(+), 3 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index c12f817..820614f 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "pq" -version = "1.1.1" +version = "1.2.0" authors = ["Sevag Hanssian "] description = "jq for protobuf" repository = "https://github.com/sevagh/pq" @@ -17,7 +17,7 @@ erased_serde_json = { path = "erased-serde-json", version = "0.1.0" } serde_json = "1.0" serde-protobuf = "0.7" protobuf = "1.4" -stream_delimit = { path = "stream-delimit", version = "0.5.0" } +stream_delimit = { path = "stream-delimit", version = "0.5.1" } clap = "2" libc = "0.2" diff --git a/GNUmakefile b/GNUmakefile index e099baa..2f80eb4 100644 --- a/GNUmakefile +++ b/GNUmakefile @@ -16,6 +16,9 @@ release: docker test: docker docker $(DOCKER_ARGS) sh -c "cargo test --verbose $(CHOWN_CMD)" +publish: docker + docker $(DOCKER_ARGS) sh -c "cargo login $(CARGO_TOKEN) && cd stream-delimit && cargo publish && cd ../ && cargo publish $(CHOWN_CMD)" + fmt: -cargo +nightly fmt --all diff --git a/stream-delimit/Cargo.toml b/stream-delimit/Cargo.toml index f2187df..7d56823 100644 --- a/stream-delimit/Cargo.toml +++ b/stream-delimit/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "stream_delimit" -version = "0.5.0" +version = "0.5.1" authors = ["Sevag Hanssian "] description = "length delimited protobuf stream separator" repository = "https://github.com/sevagh/pq/tree/master/stream_delimit"