Skip to content

Commit

Permalink
Bump version numbers to 1.1 to make us work again on the most recent …
Browse files Browse the repository at this point in the history
…rustc. In addition, don't build documentation for all dependencies to avoid 300MB build_docs folders.
  • Loading branch information
CensoredUsername committed Apr 22, 2017
1 parent cbbd7c5 commit b0a58a3
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
6 changes: 3 additions & 3 deletions build_docs.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -47,7 +47,7 @@ done
if [ "$1" == "commit" ]; then
echo "cloning gh-pages into a temporary directory"
git clone --branch gh-pages --depth 1 "[email protected]:CensoredUsername/dynasm-rs.git" deploy_docs

git gc
cd deploy_docs
git config user.name "CensoredUsername"
git config user.email "[email protected]"
Expand Down
2 changes: 1 addition & 1 deletion plugin/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "dynasm"
version = "0.1.0"
version = "0.1.1"
authors = ["Alexander Stocko <[email protected]>", "CensoredUsername <[email protected]>"]

description = "A plugin for assembling code at runtime. Combined with the runtime crate dynasmrt it can be used to write JIT compilers easily."
Expand Down
2 changes: 1 addition & 1 deletion runtime/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "dynasmrt"
version = "0.1.0"
version = "0.1.1"
authors = ["Alexander Stocko <[email protected]>", "CensoredUsername <[email protected]>"]

description = "A simple runtime for assembling code at runtime. Combined with the plugin crate dynasm it can be used to write JIT compilers easily."
Expand Down

0 comments on commit b0a58a3

Please sign in to comment.