diff --git a/CHANGES.rst b/CHANGES.rst index a5f16c93..fc57fac9 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -2,6 +2,36 @@ Release history ================= +Version 7.0.2 +============= + +Released: 2023-04-03 + +This is a bugfix release that fixes some test interaction issues and +automates the documentation build. + +Fixes +----- +* Fix test-ordering issues with egg-based tests that modify ``pkg_resources`` + global state. (#564) + +Documentation +------------- +* Reorganise the gh-pages documentation. The main gh-pages page + (https://docs.enthought.com/envisage) now matches the contents of the GitHub + ``main`` branch, while subdirectories (e.g., + https://docs.enthought.com/envisage/7.0) provide documentation for released + versions. A 'latest' symlink is in place, so + https://docs.enthought.com/envisage/latest will bring up the documentation + for the latest release. (#565) + +Build +----- +* Add GitHub Actions workflows to automate documentation updates. The main + documentation is updated on every push to ``main``, while the release + documentation is updated on each GitHub release creation. (#565) + + Version 7.0.1 ============= diff --git a/pyproject.toml b/pyproject.toml index 64a6ef85..7a007406 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,7 +4,7 @@ build-backend = 'setuptools.build_meta' [project] name = 'envisage' -version = '7.0.1' +version = '7.0.2' description = 'Extensible application framework' readme = 'README.rst' requires-python = '>= 3.7'