-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Version 1.1.0 (includes documentation update for release).
- Loading branch information
1 parent
dab41e7
commit 29e2451
Showing
5 changed files
with
28 additions
and
12 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,20 @@ | ||
What's New | ||
========== | ||
|
||
Version 1.1.0 | ||
------------- | ||
* Updated field classifications to the 2025 Archery GB scheme: | ||
|
||
* Uses new age groups, rounds, classifications and scores | ||
* For full details see `archerycalculator.co.uk/new-field <https://archerycalculator.co.uk/new-field>`_ | ||
* Added option to use "English Longbow" as a bowstyle alias | ||
* Old field classifications archived but still available using ``old`` in the function calls. See `related API documentation <https://archeryutils.readthedocs.io/en/latest/api/archeryutils.classifications.html#archeryutils.classifications.old_agb_field_classification_scores>`_ | ||
|
||
* Test suite extended to cover Python 3.13 | ||
* Linting moved to use ruff v0.7.3 | ||
* Coverage workflows updated to latest versions | ||
|
||
|
||
Version 1.0.0 | ||
------------- | ||
* Initial release of archeryutils. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta" | |
|
||
[project] | ||
name = "archeryutils" | ||
version = "1.0.0" | ||
version = "1.1.0" | ||
description = "A collection of archery utilities in python." | ||
authors = [ | ||
{ name="Jack Atkinson", email="[email protected]" }, | ||
|
@@ -39,7 +39,7 @@ lint = [ | |
"coverage", | ||
"pytest>=7.2.0", | ||
"pytest-mock", | ||
"ruff>=0.3.0", | ||
"ruff>=0.7.3", | ||
"blackdoc", | ||
] | ||
docs = [ | ||
|
@@ -49,7 +49,7 @@ docs = [ | |
"nbsphinx", | ||
"ipython", | ||
"pickleshare", # https://github.com/ipython/ipython/issues/14237 | ||
"ruff>=0.3.0", | ||
"ruff>=0.7.3", | ||
"blackdoc", | ||
] | ||
|
||
|