From 85feea9d67e6d87b2640f20572862b79f4c6792e Mon Sep 17 00:00:00 2001 From: "Colin B. Macdonald" Date: Fri, 13 Sep 2024 15:38:31 -0700 Subject: [PATCH] don't include outdated changelog in docs (#301) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com> Co-authored-by: Bernát Gábor --- CHANGES.rst | 4 +--- docs/changelog.rst | 1 - docs/index.rst | 1 - pyproject.toml | 8 +++++--- 4 files changed, 6 insertions(+), 8 deletions(-) delete mode 100644 docs/changelog.rst diff --git a/CHANGES.rst b/CHANGES.rst index 4377e2f8..5aff2754 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -1,9 +1,7 @@ platformdirs Changelog ====================== -platformdirs 4.1.0 (2024-01-XX) -------------------------------- -- Add convenience methods ``iter_{config,cache,data,runtime}_{dirs,paths}``. +The changes of more recent versions are `tracked here `_. platformdirs 4.0.0 (2023-11-10) ------------------------------- diff --git a/docs/changelog.rst b/docs/changelog.rst deleted file mode 100644 index d9e113ec..00000000 --- a/docs/changelog.rst +++ /dev/null @@ -1 +0,0 @@ -.. include:: ../CHANGES.rst diff --git a/docs/index.rst b/docs/index.rst index 7c5428c2..a71976e5 100644 --- a/docs/index.rst +++ b/docs/index.rst @@ -13,7 +13,6 @@ The source code and issue tracker are both hosted on `GitHub`_. :maxdepth: 3 api - changelog Indices and tables ================== diff --git a/pyproject.toml b/pyproject.toml index 66f7e4de..1d464156 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -61,10 +61,12 @@ optional-dependencies.test = [ optional-dependencies.type = [ "mypy>=1.11.2", ] + +urls.Changelog = "https://github.com/tox-dev/platformdirs/releases" urls.Documentation = "https://platformdirs.readthedocs.io" -urls.Homepage = "https://github.com/platformdirs/platformdirs" -urls.Source = "https://github.com/platformdirs/platformdirs" -urls.Tracker = "https://github.com/platformdirs/platformdirs/issues" +urls.Homepage = "https://github.com/tox-dev/platformdirs" +urls.Source = "https://github.com/tox-dev/platformdirs" +urls.Tracker = "https://github.com/tox-dev/platformdirs/issues" [tool.hatch] build.hooks.vcs.version-file = "src/platformdirs/version.py"