diff --git a/Cargo.toml b/Cargo.toml index 48e7a7b..6ebc956 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "modcholesky" -version = "0.1.4" +version = "0.2.0" authors = ["Stefan Kroboth "] edition = "2018" license = "MIT OR Apache-2.0" @@ -11,9 +11,6 @@ repository = "https://github.com/argmin-rs/modcholesky" readme = "README.md" keywords = ["optimization", "math", "science", "HPC"] categories = ["science"] -exclude = [ - "push_docs", -] [dependencies] ndarray = { version = "0.16", features = ["approx"] } diff --git a/push_docs b/push_docs deleted file mode 100755 index 91335a9..0000000 --- a/push_docs +++ /dev/null @@ -1,45 +0,0 @@ -#!/usr/bin/bash - -# Make doc -cargo clean -cargo doc --no-deps - -# Make temporary folder -rm -rf .doc_tmp -mkdir .doc_tmp -cd .doc_tmp - -# initialize git repository -git init - -# add remote -git remote add origin git@github.com:argmin-rs/modcholesky.git - -# checkout gh-pages -git checkout -b gh-pages - -# pull stuff -git pull origin gh-pages - -# cleanup old stuff -rm -rf * - -# copy documentation -cp -r ../target/doc/* . -touch .nojekyll -cat < index.html - - -EOF - -# add and commit all -git add -f --all . -git add -f --all .* -git commit -m 'Semiautomatic update of documentation' - -# push -git push -f origin gh-pages - -# remove temporary directory -cd .. -rm -rf .doc_tmp