Skip to content

Commit

Permalink
release 2.0.0
Browse files Browse the repository at this point in the history
- chore: release 2.0.0
  • Loading branch information
msftcangoblowm committed Oct 1, 2024
1 parent aca61cb commit 2b86ce6
Show file tree
Hide file tree
Showing 5 changed files with 41 additions and 41 deletions.
50 changes: 26 additions & 24 deletions CHANGES.rst
Original file line number Diff line number Diff line change
Expand Up @@ -26,32 +26,34 @@ Changelog
Commit items for NEXT VERSION
..............................

- ci: drop PyPy implementation no support by ruamel-yaml
- fix: remove myst-parser testing additional dependencies
- fix(tox): add setuptools into build environment
- fix: single quote pip<24.2
- fix(tox): install_command add constraint pip<24.2
- fix: pip installed early pip<24.2
- chore: add requirements/myst-parser.pins
- fix: myst-parser ruamel-yaml#521 pip#12884 solution pip<24.2
- fix: resolve dependency conflict resolution
- ci(test-coverage): remove pytest-cov. coverage > pytest-cov
- chore(tox): build current not tag
- chore(igor): remove commented out code
- ci(test-coverage): fix dependency relative path
- ci(release): python version str needs double quotes
- ci(python-nightly): fix deadsnakes/action actions/setup-python tags
- feat: sphinx drop py39 support, do the same
- feat: add intersphinx support. ref > url
- fix: myst-parser use latest commit
- fix: click.Path parameters receive as pathlib.Path. Previously str
- ci: python base version py39 --> py310
- docs: complete code documentation
- chore: add Makefile targets version-override fix-upgrade
- chore: remove pytest-cov dependency

.. scriv-start-here
.. _changes_2-0-0:

Version 2.0.0 — 2024-10-01
--------------------------

- ci: drop PyPy implementation no support by ruamel-yaml
- fix(tox): add setuptools into build environment
- fix(tox): install_command add constraint pip<24.2
- fix: remove myst-parser testing additional dependencies
- chore: add requirements/myst-parser.pins
- fix: myst-parser ruamel-yaml#521 pip#12884 solution pip<24.2
- fix: myst-parser use latest commit
- chore: remove pytest-cov dependency
- ci(test-coverage): remove pytest-cov. coverage > pytest-cov
- chore(tox): build current not tag
- chore(igor): remove commented out code
- ci(test-coverage): fix dependency relative path
- ci(release): python version str needs double quotes
- ci(python-nightly): fix deadsnakes/action actions/setup-python tags
- feat: sphinx drop py39 support, do the same
- feat: add intersphinx support. ref > url
- fix: click.Path parameters receive as pathlib.Path. Previously str
- ci: python base version py39 --> py310
- docs: complete code documentation
- chore: add Makefile targets version-override fix-upgrade

.. _changes_1-2-3:

Version 1.2.3 — 2024-09-19
Expand Down
9 changes: 4 additions & 5 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -32,16 +32,15 @@ It also allows for documents not specified in the ToC to be auto-excluded.
* Python 3.10 through 3.12, and 3.13.0a3 and up.

**New in 2.0.x:**

intersphinx support; ref > url; Sphinx py310+ drop py39;

**New in 1.2.x:**

create_site no overwrite and existing files informative message;
SiteMap.file_format ignore unknown use cases; branches test Windows and MacOS;

**New in 1.1.x:**

fork project; drop pyyaml support transition to strictyaml; use both markdown and restructuredtext;
code manual; semantic versioning; badges;

This is a fork
---------------

Expand Down
6 changes: 3 additions & 3 deletions docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -37,11 +37,11 @@
# @@@ editable
copyright = "2023–2024, Dave Faulkmore"
# The short X.Y.Z version.
version = "1.2.3"
version = "2.0.0"
# The full version, including alpha/beta/rc tags.
release = "1.2.3"
release = "2.0.0"
# The date of release, in "monthname day, year" format.
release_date = "September 19, 2024"
release_date = "October 1, 2024"
# @@@ end

v = parse(release)
Expand Down
9 changes: 4 additions & 5 deletions docs/intro.rst
Original file line number Diff line number Diff line change
Expand Up @@ -16,16 +16,15 @@ This extension facilitates a **top-down** approach to defining the site-map stru
* Python 3.10 through 3.12, and 3.13.0a3 and up.

**New in 2.0.x:**

intersphinx support; ref > url; Sphinx py310+ drop py39;

**New in 1.2.x:**

create_site no overwrite and existing files informative message;
SiteMap.file_format ignore unknown use cases; branches test Windows and MacOS;

**New in 1.1.x:**

fork project; drop pyyaml support transition to strictyaml; use both markdown and restructuredtext;
code manual; semantic versioning; badges;

Forked
-------

Expand Down
8 changes: 4 additions & 4 deletions howto.txt
Original file line number Diff line number Diff line change
Expand Up @@ -45,10 +45,10 @@
- Check that the docs build correctly:
$ tox -e docs
or
$ cd docs && make doctest && cd - &>/dev/null
$ cd docs && make linkcheck && cd - &>/dev/null
$ cd docs && make html && cd - &>/dev/null
$ cd docs && make pdf && cd - &>/dev/null
$ cd docs && make doctest; cd - &>/dev/null
$ cd docs && make linkcheck; cd - &>/dev/null
$ cd docs && make html; cd - &>/dev/null
$ cd docs && make pdf; cd - &>/dev/null
- tox will affect _version.py, revert version str back to tagged version
- commit the release-prep changes
$ make relcommit1
Expand Down

0 comments on commit 2b86ce6

Please sign in to comment.