Skip to content

Commit

Permalink
docs: prep for 6.6.0b1
Browse files Browse the repository at this point in the history
  • Loading branch information
nedbat committed Oct 31, 2022
1 parent 1291388 commit 64559a0
Show file tree
Hide file tree
Showing 4 changed files with 16 additions and 10 deletions.
16 changes: 11 additions & 5 deletions CHANGES.rst
Original file line number Diff line number Diff line change
Expand Up @@ -17,12 +17,18 @@ development at the same time, such as 4.5.x and 5.0.
.. Version 9.8.1 — 2027-07-27
.. --------------------------
Unreleased
----------
.. _changes_6-6-0b1:

- Fixes to file pattern matching, fixing `issue 1407`_. Previously, `*` would
incorrectly match directory separators, making precise matching difficult.
This is now fixed.
Version 6.6.0b1 — 2022-10-31
----------------------------

- Changes to file pattern matching, which might require updating your
configuration:

- Previously, ``*`` would incorrectly match directory separators, making
precise matching difficult. This is now fixed, closing `issue 1407`_.

- Now ``**`` matches any number of nested directories, including none.

- Improvements to combining data files when using the
:ref:`config_run_relative_files` setting:
Expand Down
2 changes: 1 addition & 1 deletion coverage/version.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
# This file is exec'ed in setup.py, don't import anything!

# Same semantics as sys.version_info.
version_info = (6, 5, 1, "alpha", 0)
version_info = (6, 6, 0, "beta", 1)


def _make_version(major, minor, micro, releaselevel, serial):
Expand Down
6 changes: 3 additions & 3 deletions doc/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -65,11 +65,11 @@
# @@@ editable
copyright = "2009–2022, Ned Batchelder" # pylint: disable=redefined-builtin
# The short X.Y.Z version.
version = "6.5.0"
version = "6.6.0"
# The full version, including alpha/beta/rc tags.
release = "6.5.0"
release = "6.6.0b1"
# The date of release, in "monthname day, year" format.
release_date = "September 29, 2022"
release_date = "October 31, 2022"
# @@@ end

rst_epilog = """
Expand Down
2 changes: 1 addition & 1 deletion doc/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ supported on:
.. ifconfig:: prerelease

**This is a pre-release build. The usual warnings about possible bugs
apply.** The latest stable version is coverage.py 6.4, `described here`_.
apply.** The latest stable version is coverage.py 6.5.0, `described here`_.


.. _described here: http://coverage.readthedocs.io/
Expand Down

0 comments on commit 64559a0

Please sign in to comment.