Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Prep 0.7 release #24

Open
wants to merge 3 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
34 changes: 0 additions & 34 deletions .travis.yml

This file was deleted.

12 changes: 7 additions & 5 deletions CHANGES.rst
Original file line number Diff line number Diff line change
@@ -1,9 +1,13 @@
Changes
=======

0.7 (unreleased)
0.7 (2024-05-18)
----------------

- Add support for Python 3.8, 3.9, 3.10, 3.11 and 3.12.

- Drop support for 2.7, 3.4, 3.5, 3.6 and 3.7.

- Add Github workflow CI.

- Update distribution packaging (``pyproject.toml``).
Expand All @@ -12,11 +16,9 @@ Changes

- Refactor tests using ``pytest`` patterns.

- Add support for Python 3.8, 3.9, 3.10, 3.11 and 3.12.

- Drop support for 2.7, 3.4, 3.5, 3.6 and 3.7.
- Remove the ``peppercorn.compat`` module.

- Remove the ``pytest.compat`` module.
- Update docs to build using the current version.


0.6 (2018-08-24)
Expand Down
10 changes: 6 additions & 4 deletions RELEASING.txt
Original file line number Diff line number Diff line change
Expand Up @@ -49,12 +49,14 @@ Prepare new release branch via a pull request

- Normalize changelog if needed (imperative voice, spacing, etc.).

- Update the release number in ``setup.py``.
- Update the release number in ``pyproject.toml``.

- Make sure PyPI long description renders (requires ``readme_renderer``
installed into your Python)::
- Check that the package builds correctly via:

$ python setup.py check -r -s -m
$ tox -re lint-pkg

Examine the generated wheel and sdist files, located in
``.tox/lint-pkg/dist/``.

- Use "standard" commit message for the pull request::

Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ build-backend = "setuptools.build_meta"
[project]
name = "peppercorn"
dynamic = ["readme"]
version = "0.7dev0"
version = "0.7"
description= "Convert tokens into data structure for use in web form posts"
classifiers = [
"Intended Audience :: Developers",
Expand Down