Skip to content

Commit

Permalink
Use explicit refspecs
Browse files Browse the repository at this point in the history
  • Loading branch information
Nemo157 committed Dec 29, 2014
1 parent 1e89a2a commit 1e0a09f
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]

name = "roaring"
version = "0.0.9"
version = "0.0.10"
authors = ["Wim Looman <ghostunderscore@gmail.com>"]
description = "http://roaringbitmap.org for http://www.rust-lang.org"

Expand Down
4 changes: 2 additions & 2 deletions publish_docs.sh
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ TAG=${1:?'Must provide tag'}

# Setup this repo to publish the docs
git fetch origin gh-pages
git checkout gh-pages
git checkout -b gh-pages FETCH_HEAD

# Move the built docs into versioned folder
mv target/doc docs/$TAG
Expand All @@ -23,4 +23,4 @@ git add index.html

# Commit and push
git commit -m "Add API docs for $TAG"
git push
git push origin gh-pages:gh-pages

0 comments on commit 1e0a09f

Please sign in to comment.