diff --git a/CHANGES.md b/CHANGES.md index f8eee514..b35db7a1 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -1,11 +1,12 @@ # Release Notes -## v0.x.x -- October 2023 +## v0.7.0 -- October 2023 -- Update required pytask to version 0.4 and adjust code accordingly. +- Update required pytask to version 0.4 and adjust code accordingly (only Python + example). - Pre-commit autoupdate / fix ruff complaints. -## v0.6.4 -- March 2023 +## v0.6.5 -- March 2023 Incorporate more feedback from EPP students, @janosg: diff --git a/docs/source/conf.py b/docs/source/conf.py index 47c5b03c..8d074098 100644 --- a/docs/source/conf.py +++ b/docs/source/conf.py @@ -107,8 +107,8 @@ # |version| and |release|, also used in various other places throughout the # built documents. # -release = "0.6.5" -version = "0.6.5" +release = "0.7.0" +version = "0.7.0" # The language for content autogenerated by Sphinx. Refer to documentation # for a list of supported languages. diff --git a/docs/source/development/changes.md b/docs/source/development/changes.md deleted file mode 100644 index 5569a397..00000000 --- a/docs/source/development/changes.md +++ /dev/null @@ -1,3 +0,0 @@ -```{eval-rst} -.. include:: ../../../CHANGES.md -``` diff --git a/docs/source/development/index.md b/docs/source/development/index.md index cb005096..b0a1a596 100644 --- a/docs/source/development/index.md +++ b/docs/source/development/index.md @@ -7,6 +7,3 @@ parser: myst_parser.sphinx_ --- ``` - -```{include} changes.md -``` diff --git a/docs/source/faq.md b/docs/source/faq.md index 0084c182..2ea1c838 100644 --- a/docs/source/faq.md +++ b/docs/source/faq.md @@ -118,7 +118,7 @@ but it is precise...). Then type: ```bash -$ code ~/.cookiecutter_replay/econ-project-templates-0.6.5.json +$ code ~/.cookiecutter_replay/econ-project-templates-0.7.0.json ``` If you are not using VS Code as your editor of choice, adjust the line accordingly. @@ -130,7 +130,7 @@ you have spaces or special characters in your path, you need to adjust your path When done, launch a new shell if necessary and type: ```bash -$ cookiecutter --replay https://github.com/OpenSourceEconomics/econ-project-templates/archive/v0.6.5.zip +$ cookiecutter --replay https://github.com/OpenSourceEconomics/econ-project-templates/archive/v0.7.0.zip ``` (stata_failure_check_erase_log_file)= diff --git a/docs/source/getting_started/cookiecutter_dialogue.md b/docs/source/getting_started/cookiecutter_dialogue.md index bc731614..b1f09aff 100644 --- a/docs/source/getting_started/cookiecutter_dialogue.md +++ b/docs/source/getting_started/cookiecutter_dialogue.md @@ -10,7 +10,7 @@ 1. Type (i.e., copy & paste): ```console - cookiecutter https://github.com/OpenSourceEconomics/econ-project-templates/archive/v0.6.5.zip + cookiecutter https://github.com/OpenSourceEconomics/econ-project-templates/archive/v0.7.0.zip ``` 1. The dialogue will move you through the installation. **Make sure to keep this page diff --git a/docs/source/index.md b/docs/source/index.md index b90d7481..6a3a685a 100644 --- a/docs/source/index.md +++ b/docs/source/index.md @@ -58,5 +58,6 @@ guides_explanations/index programming_languages/index faq development/index +release_notes zreferences ``` diff --git a/docs/source/release_notes.md b/docs/source/release_notes.md new file mode 100644 index 00000000..ae803bd4 --- /dev/null +++ b/docs/source/release_notes.md @@ -0,0 +1,7 @@ +# Release Notes + +```{include} ../../CHANGES.md +--- +start-line: 1 +--- +```