Skip to content

Commit

Permalink
v1.1.0 — Support PEP 700
Browse files Browse the repository at this point in the history
- Support PEP 700
    - `versions` field added to `ProjectPage`
    - `size` and `upload_time` fields added to `DistributionPackage`
    - `SUPPORTED_REPOSITORY_VERSION` increased to `"1.1"`
  • Loading branch information
jwodder committed Feb 19, 2023
1 parent 6b77451 commit d4fbe19
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 7 deletions.
4 changes: 2 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
v1.1.0 (in development)
-----------------------
v1.1.0 (2023-02-19)
-------------------
- Support PEP 700
- `versions` field added to `ProjectPage`
- `size` and `upload_time` fields added to `DistributionPackage`
Expand Down
2 changes: 1 addition & 1 deletion LICENSE
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
The MIT License (MIT)

Copyright (c) 2018-2022 John Thorvald Wodder II
Copyright (c) 2018-2023 John Thorvald Wodder II

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
Expand Down
4 changes: 2 additions & 2 deletions docs/changelog.rst
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@
Changelog
=========

v1.1.0 (in development)
-----------------------
v1.1.0 (2023-02-19)
-------------------
- Support :pep:`700`

- ``versions`` field added to `ProjectPage`
Expand Down
2 changes: 1 addition & 1 deletion docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

project = "pypi-simple"
author = "John T. Wodder II"
copyright = "2018-2022 John T. Wodder II" # noqa: A001
copyright = "2018-2023 John T. Wodder II" # noqa: A001

extensions = [
"sphinx.ext.autodoc",
Expand Down
2 changes: 1 addition & 1 deletion src/pypi_simple/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
for more information.
"""

__version__ = "1.1.0.dev1"
__version__ = "1.1.0"
__author__ = "John Thorvald Wodder II"
__author_email__ = "[email protected]"
__license__ = "MIT"
Expand Down

0 comments on commit d4fbe19

Please sign in to comment.