Skip to content

Commit

Permalink
v0.6.1 — Packaging updates
Browse files Browse the repository at this point in the history
- Support Python 3.9, 3.10, 3.11, 3.12, and 3.13
- Drop support for Python 3.5, 3.6, and 3.7
- `LogEntry`'s `__eq__` method now returns `NotImplemented` instead of `False` when comparing against non-`LogEntry` values
- Migrated from setuptools to hatch
  • Loading branch information
jwodder committed Dec 1, 2024
1 parent ef9973b commit a48f4c3
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 @@
v0.7.0 (in development)
-----------------------
v0.6.1 (2024-12-01)
-------------------
- Support Python 3.9, 3.10, 3.11, 3.12, and 3.13
- Drop support for Python 3.5, 3.6, and 3.7
- `LogEntry`'s `__eq__` method now returns `NotImplemented` instead of `False`
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) 2017-2020 John Thorvald Wodder II and contributors
Copyright (c) 2017-2024 John Thorvald Wodder II and contributors

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
=========

v0.7.0 (in development)
-----------------------
v0.6.1 (2024-12-01)
-------------------
- Support Python 3.9, 3.10, 3.11, 3.12, and 3.13
- Drop support for Python 3.5, 3.6, and 3.7
- `LogEntry`'s ``__eq__`` method now returns `NotImplemented` instead of
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 = "apachelogs"
author = "John Thorvald Wodder II"
copyright = "2017-2020 John Thorvald Wodder II" # noqa: A001
copyright = "2017-2024 John Thorvald Wodder II" # noqa: A001

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

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

0 comments on commit a48f4c3

Please sign in to comment.