Skip to content

Commit

Permalink
v2.2.0 — Importable command classes
Browse files Browse the repository at this point in the history
- The custom setuptools command classes can now be imported directly from the `versioningit.cmdclass` module as an alternative to calling `get_cmdclasses()`
  • Loading branch information
jwodder committed Feb 11, 2023
1 parent 2b94523 commit 6e2a59b
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 @@
v2.2.0 (in development)
-----------------------
v2.2.0 (2023-02-11)
-------------------
- The custom setuptools command classes can now be imported directly from the
`versioningit.cmdclass` module as an alternative to calling
`get_cmdclasses()`
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) 2021-2022 John Thorvald Wodder II and contributors
Copyright (c) 2021-2023 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
=========

v2.2.0 (in development)
-----------------------
v2.2.0 (2023-02-11)
-------------------
- The custom setuptools command classes can now be imported directly from the
``versioningit.cmdclass`` module as an alternative to calling
`get_cmdclasses()`
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 = "versioningit"
author = "John Thorvald Wodder II"
copyright = "2021-2022 John Thorvald Wodder II" # noqa: A001
copyright = "2021-2023 John Thorvald Wodder II" # noqa: A001

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

__version__ = "2.2.0.dev1"
__version__ = "2.2.0"
__author__ = "John Thorvald Wodder II"
__author_email__ = "versioningit@varonathe.org"
__license__ = "MIT"
Expand Down

0 comments on commit 6e2a59b

Please sign in to comment.