-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* release/v0.10.2: Bump version from 0.10.1 to 0.10.2 Fix: wrong version in virtual environment (#142) Add command `get-event` (#140) build(deps-dev): bump mypy from 0.902 to 0.910 (#138) build(deps-dev): bump isort from 5.8.0 to 5.9.1 (#134) build(deps-dev): bump types-requests from 0.1.13 to 2.25.0 (#135) Rewrite API handler (#137) Add start switch to deploy argument (#133) build(deps-dev): bump types-requests from 0.1.12 to 0.1.13 (#131) build(deps-dev): bump types-pkg-resources from 0.1.2 to 0.1.3 (#130) build(deps-dev): bump types-requests from 0.1.11 to 0.1.12 (#128) build(deps-dev): bump types-tabulate from 0.1.0 to 0.1.1 (#126) build(deps-dev): bump types-paramiko from 0.1.6 to 0.1.7 (#129) build(deps): bump gitpython from 3.1.17 to 3.1.18 (#127) build(deps-dev): bump types-toml from 0.1.2 to 0.1.3 (#125)
- Loading branch information
Showing
25 changed files
with
560 additions
and
490 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
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,4 +1 @@ | ||
Changelog | ||
========= | ||
|
||
.. include:: ../../CHANGELOG.rst |
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 |
---|---|---|
|
@@ -21,13 +21,16 @@ | |
|
||
from __future__ import annotations | ||
|
||
from importlib.metadata import version | ||
from pathlib import Path | ||
|
||
from single_source import get_version | ||
|
||
|
||
__author__: str = "Michael Sasser" | ||
__email__: str = "[email protected]" | ||
__version__: str = version("matrixctl") | ||
__version__: str = ( | ||
get_version(__name__, Path(__file__).parent.parent) or "Unknown" | ||
) | ||
|
||
HOME: str = str(Path.home()) | ||
|
||
|
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
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
Oops, something went wrong.