From d80648a3a74c69bfcd205e2da33e4b06beb4c2bc Mon Sep 17 00:00:00 2001 From: Andrew Hamilton Date: Sun, 10 Mar 2024 21:39:09 +1000 Subject: [PATCH] Update version to v2024.03.10 --- README.md | 2 +- eris/eris/__init__.py | 2 +- eris/setup.py | 2 +- fill3/fill3/__init__.py | 2 +- fill3/setup.py | 2 +- lscolors/lscolors/__init__.py | 2 +- lscolors/setup.py | 2 +- packaging/make-readme.py | 2 +- termstr/setup.py | 2 +- termstr/termstr.py | 2 +- 10 files changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 59f08d9..c37d25b 100644 --- a/README.md +++ b/README.md @@ -10,7 +10,7 @@ Eris maintains an up-to-date set of reports for every file in a codebase. Install eris with pipx, then install all the tools eris uses: - pipx install --system-site-packages git+https://gitlab.com/ahamilton/eris@v2023.09.18#subdirectory=eris + pipx install --system-site-packages git+https://gitlab.com/ahamilton/eris@v2024.03.10#subdirectory=eris eris --install-all-tools Or install from source: (includes tools) diff --git a/eris/eris/__init__.py b/eris/eris/__init__.py index 5209b5c..ff8a1e3 100644 --- a/eris/eris/__init__.py +++ b/eris/eris/__init__.py @@ -1,3 +1,3 @@ -__version__ = "v2023.09.18" +__version__ = "v2024.03.10" diff --git a/eris/setup.py b/eris/setup.py index 3cf2baf..266b708 100755 --- a/eris/setup.py +++ b/eris/setup.py @@ -10,7 +10,7 @@ except ImportError: REPO_PATH = os.path.dirname(os.getcwd()) setup(name="eris", - version="v2023.09.18", + version="v2024.03.10", description=("Eris maintains an up-to-date set of reports for every file in a codebase."), url="https://github.com/ahamilton/eris", author="Andrew Hamilton", diff --git a/fill3/fill3/__init__.py b/fill3/fill3/__init__.py index 8df5875..0c916d2 100755 --- a/fill3/fill3/__init__.py +++ b/fill3/fill3/__init__.py @@ -15,7 +15,7 @@ import fill3.terminal as terminal import termstr -__version__ = "v2023.09.18" +__version__ = "v2024.03.10" ########################## diff --git a/fill3/setup.py b/fill3/setup.py index d241efb..8b41e5f 100755 --- a/fill3/setup.py +++ b/fill3/setup.py @@ -10,7 +10,7 @@ except ImportError: REPO_PATH = os.path.dirname(os.getcwd()) setup(name="fill3", - version="v2023.09.18", + version="v2024.03.10", description=("Fill3 provides basic widgets for a tui."), url="https://github.com/ahamilton/eris", author="Andrew Hamilton", diff --git a/lscolors/lscolors/__init__.py b/lscolors/lscolors/__init__.py index e69ab49..e086857 100644 --- a/lscolors/lscolors/__init__.py +++ b/lscolors/lscolors/__init__.py @@ -15,7 +15,7 @@ import lscolors import termstr -__version__ = "v2023.09.18" +__version__ = "v2024.03.10" FILE_KEY = "fi" diff --git a/lscolors/setup.py b/lscolors/setup.py index 3803edf..eac8e2e 100755 --- a/lscolors/setup.py +++ b/lscolors/setup.py @@ -10,7 +10,7 @@ except ImportError: REPO_PATH = os.path.dirname(os.getcwd()) setup(name="lscolors", - version="v2023.09.18", + version="v2024.03.10", description=("Give coloring for file types as in the ls command."), url="https://github.com/ahamilton/eris", author="Andrew Hamilton", diff --git a/packaging/make-readme.py b/packaging/make-readme.py index 1f93a00..a71289d 100755 --- a/packaging/make-readme.py +++ b/packaging/make-readme.py @@ -26,7 +26,7 @@ Eris maintains an up-to-date set of reports for every file in a codebase. Install eris with pipx, then install all the tools eris uses: - pipx install --system-site-packages git+https://gitlab.com/ahamilton/eris@v2023.09.18#subdirectory=eris + pipx install --system-site-packages git+https://gitlab.com/ahamilton/eris@v2024.03.10#subdirectory=eris eris --install-all-tools Or install from source: (includes tools) diff --git a/termstr/setup.py b/termstr/setup.py index f0778e1..b4703be 100755 --- a/termstr/setup.py +++ b/termstr/setup.py @@ -8,7 +8,7 @@ except ImportError: setup(name="termstr", - version="v2023.09.18", + version="v2024.03.10", description=("Termstr provides strings with extra terminal styling."), url="https://github.com/ahamilton/eris", author="Andrew Hamilton", diff --git a/termstr/termstr.py b/termstr/termstr.py index 8f6bbc2..ac52d78 100644 --- a/termstr/termstr.py +++ b/termstr/termstr.py @@ -10,7 +10,7 @@ import weakref import cwcwidth -__version__ = "v2023.09.18" +__version__ = "v2024.03.10" ESC = "\x1b"