diff --git a/CHANGELOG.md b/CHANGELOG.md index 2037ee2..400d3f1 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,19 @@ Change Log ========== + +[0.4.0][] (2019-03-01) +---------------------- + +- Features: + + should support sphinx-autobuild #12 + + should support Docker workflow #13 + +- Improvements: + + should replace --set-upstream by --set-upstream-to instead #14 + +Details: https://github.com/teracyhq/sphinx-deployment/milestone/1?closed=1 + 0.3.1 (2015-08-24) ------------------ @@ -50,3 +63,6 @@ Change Log [0.2.0]: https://issues.teracy.org/secure/ReleaseNote.jspa?projectId=10405&version=10004 [0.3.0]: https://issues.teracy.org/secure/ReleaseNote.jspa?projectId=10405&version=10301 + +[0.4.0]: https://github.com/teracyhq/sphinx-deployment/milestone/1?closed=1 + diff --git a/README.md b/README.md index a32ea35..175b5c9 100644 --- a/README.md +++ b/README.md @@ -71,14 +71,14 @@ You need to specify the `` to your sphinx docs directory: ``` bash $ cd -$ wget https://raw.githubusercontent.com/teracyhq/sphinx-deployment/develop/scripts/spxd.sh && chmod +x ./spxd.sh && ./spxd.sh -p +$ wget https://raw.githubusercontent.com/teracyhq/sphinx-deployment/v0.4.0/scripts/spxd.sh && chmod +x ./spxd.sh && ./spxd.sh -p ``` For example: ``` bash $ cd my_project -$ wget https://raw.githubusercontent.com/teracyhq/sphinx-deployment/develop/scripts/spxd.sh && chmod +x ./spxd.sh && ./spxd.sh -p ./docs +$ wget https://raw.githubusercontent.com/teracyhq/sphinx-deployment/v0.4.0/scripts/spxd.sh && chmod +x ./spxd.sh && ./spxd.sh -p ./docs ``` **2. Manual** diff --git a/release.md b/release.md index 6fd1b43..ff5b398 100644 --- a/release.md +++ b/release.md @@ -6,17 +6,14 @@ The documentation is used to release `sphinx-deployment`. README.md --------- -- Find `https://raw.github.com/teracy-official/sphinx-deployment/develop/scripts/spxd.sh` and +- Find `https://raw.githubusercontent.com/teracyhq/sphinx-deployment/develop/scripts/spxd.sh` and replace `develop` with the right release version, for example: `v0.1.0` CHANGELOG.md ------------ -- Copy release notes from sphinx-deployment project on issues.teracy.org, for example: +- Mention issues from https://github.com/teracyhq/sphinx-deployment/issues for each release milestone -https://issues.teracy.org/secure/ReleaseNote.jspa?version=10003&styleName=Text&projectId=10405&Create=Create&atl_token=BD5N-YNBS-EHHQ-478Z%7C87dd31199258f9de5ade180582481463461ded32%7Clin - -- Note: Only copy the main issues that is worth mentioning and change the format to Markdown instead. scripts/spxd.sh --------------- diff --git a/scripts/spxd.sh b/scripts/spxd.sh index 1e44ec3..b94648c 100755 --- a/scripts/spxd.sh +++ b/scripts/spxd.sh @@ -12,7 +12,7 @@ ############################################################################ # Example to install on # $ cd -# $ wget https://raw.githubusercontent.com/teracyhq/sphinx-deployment/develop/scripts/spxd.sh && chmod +x ./spxd.sh && ./spxd.sh -p ./docs +# $ wget https://raw.githubusercontent.com/teracyhq/sphinx-deployment/v0.4.0/scripts/spxd.sh && chmod +x ./spxd.sh && ./spxd.sh -p ./docs # function command_exists() {