From b0a58a3e47f6c09d649fca2718b1dcc6c6dafc04 Mon Sep 17 00:00:00 2001 From: CensoredUsername Date: Sat, 22 Apr 2017 21:51:25 +0200 Subject: [PATCH] Bump version numbers to 1.1 to make us work again on the most recent rustc. In addition, don't build documentation for all dependencies to avoid 300MB build_docs folders. --- build_docs.sh | 6 +++--- plugin/Cargo.toml | 2 +- runtime/Cargo.toml | 2 +- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/build_docs.sh b/build_docs.sh index 8183f51a70..45ceffecd7 100644 --- a/build_docs.sh +++ b/build_docs.sh @@ -5,8 +5,8 @@ set -o errexit shopt -s globstar echo "build individual documentation" -(cd plugin && cargo doc) -(cd runtime && cargo doc) +(cd plugin && cargo doc --no-deps) +(cd runtime && cargo doc --no-deps) echo "remove old docs build" rm -rf build_docs @@ -47,7 +47,7 @@ done if [ "$1" == "commit" ]; then echo "cloning gh-pages into a temporary directory" git clone --branch gh-pages --depth 1 "git@github.com:CensoredUsername/dynasm-rs.git" deploy_docs - + git gc cd deploy_docs git config user.name "CensoredUsername" git config user.email "cens.username@gmail.com" diff --git a/plugin/Cargo.toml b/plugin/Cargo.toml index 4b4da22a0e..48ee0c0fc4 100644 --- a/plugin/Cargo.toml +++ b/plugin/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "dynasm" -version = "0.1.0" +version = "0.1.1" authors = ["Alexander Stocko ", "CensoredUsername "] description = "A plugin for assembling code at runtime. Combined with the runtime crate dynasmrt it can be used to write JIT compilers easily." diff --git a/runtime/Cargo.toml b/runtime/Cargo.toml index dd76dd34c9..2f44edd6b0 100644 --- a/runtime/Cargo.toml +++ b/runtime/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "dynasmrt" -version = "0.1.0" +version = "0.1.1" authors = ["Alexander Stocko ", "CensoredUsername "] description = "A simple runtime for assembling code at runtime. Combined with the plugin crate dynasm it can be used to write JIT compilers easily."