-
Notifications
You must be signed in to change notification settings - Fork 56
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
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.
- Loading branch information
1 parent
cbbd7c5
commit b0a58a3
Showing
3 changed files
with
5 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -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 "[email protected]:CensoredUsername/dynasm-rs.git" deploy_docs | ||
|
||
git gc | ||
cd deploy_docs | ||
git config user.name "CensoredUsername" | ||
git config user.email "[email protected]" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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." | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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." | ||
|