From a6e802e8522aa27551257b32590f045243a0785e Mon Sep 17 00:00:00 2001 From: Andrew Hamilton Date: Sat, 7 Dec 2024 23:23:08 +1000 Subject: [PATCH] Update version to v2024.12.07 --- README.md | 2 +- eris/eris/__init__.py | 2 +- eris/setup.py | 8 ++++---- fill3/fill3/__init__.py | 2 +- fill3/setup.py | 4 ++-- lscolors/lscolors/__init__.py | 2 +- lscolors/setup.py | 4 ++-- packaging/make-readme.py | 2 +- termstr/setup.py | 2 +- termstr/termstr.py | 2 +- 10 files changed, 15 insertions(+), 15 deletions(-) diff --git a/README.md b/README.md index 340cbd8..4ef6b89 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@v2024.07.11#subdirectory=eris + pipx install --system-site-packages git+https://gitlab.com/ahamilton/eris@v2024.12.07#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 46a26e6..5e53f18 100644 --- a/eris/eris/__init__.py +++ b/eris/eris/__init__.py @@ -1,3 +1,3 @@ -__version__ = "v2024.07.11" +__version__ = "v2024.12.07" diff --git a/eris/setup.py b/eris/setup.py index f8df41d..1fa404f 100755 --- a/eris/setup.py +++ b/eris/setup.py @@ -9,7 +9,7 @@ except ImportError: setup(name="eris", - version="v2024.07.11", + version="v2024.12.07", 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", @@ -25,6 +25,6 @@ setup(name="eris", install_requires=[ "pyinotify==0.9.6", "pygments==2.16.1", "docopt==0.6.2", "pillow==10.0.0", "toml==0.10.2", "decorator==5.1.1", "pexpect==4.8.0", - "fill3 @ git+https://gitlab.com/ahamilton/eris@v2024.07.11#subdirectory=fill3", - "termstr @ git+https://gitlab.com/ahamilton/eris@v2024.07.11#subdirectory=termstr", - "lscolors @ git+https://gitlab.com/ahamilton/eris@v2024.07.11#subdirectory=lscolors"]) + "fill3 @ git+https://gitlab.com/ahamilton/eris@v2024.12.07#subdirectory=fill3", + "termstr @ git+https://gitlab.com/ahamilton/eris@v2024.12.07#subdirectory=termstr", + "lscolors @ git+https://gitlab.com/ahamilton/eris@v2024.12.07#subdirectory=lscolors"]) diff --git a/fill3/fill3/__init__.py b/fill3/fill3/__init__.py index a8b59c8..42a7b97 100755 --- a/fill3/fill3/__init__.py +++ b/fill3/fill3/__init__.py @@ -15,7 +15,7 @@ import fill3.terminal as terminal import termstr -__version__ = "v2024.07.11" +__version__ = "v2024.12.07" ########################## diff --git a/fill3/setup.py b/fill3/setup.py index 159b795..6c7d093 100755 --- a/fill3/setup.py +++ b/fill3/setup.py @@ -9,11 +9,11 @@ except ImportError: setup(name="fill3", - version="v2024.07.11", + version="v2024.12.07", description=("Fill3 provides basic widgets for a tui."), url="https://github.com/ahamilton/eris", author="Andrew Hamilton", author_email="and_hamilton@yahoo.com", license="Artistic 2.0", packages=["fill3"], - install_requires=["termstr @ git+https://gitlab.com/ahamilton/eris@v2024.07.11#subdirectory=termstr"]) + install_requires=["termstr @ git+https://gitlab.com/ahamilton/eris@v2024.12.07#subdirectory=termstr"]) diff --git a/lscolors/lscolors/__init__.py b/lscolors/lscolors/__init__.py index 5465706..4ac400f 100644 --- a/lscolors/lscolors/__init__.py +++ b/lscolors/lscolors/__init__.py @@ -15,7 +15,7 @@ import lscolors import termstr -__version__ = "v2024.07.11" +__version__ = "v2024.12.07" FILE_KEY = "fi" diff --git a/lscolors/setup.py b/lscolors/setup.py index e78f993..0186aa1 100755 --- a/lscolors/setup.py +++ b/lscolors/setup.py @@ -9,7 +9,7 @@ except ImportError: setup(name="lscolors", - version="v2024.07.11", + version="v2024.12.07", description=("Give coloring for file types as in the ls command."), url="https://github.com/ahamilton/eris", author="Andrew Hamilton", @@ -17,4 +17,4 @@ setup(name="lscolors", license="Artistic 2.0", packages=["lscolors"], package_data={"lscolors": ["LS_COLORS.sh"]}, - install_requires=["termstr @ git+https://gitlab.com/ahamilton/eris@v2024.07.11#subdirectory=termstr"]) + install_requires=["termstr @ git+https://gitlab.com/ahamilton/eris@v2024.12.07#subdirectory=termstr"]) diff --git a/packaging/make-readme.py b/packaging/make-readme.py index a33383a..667dc5c 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@v2024.07.11#subdirectory=eris + pipx install --system-site-packages git+https://gitlab.com/ahamilton/eris@v2024.12.07#subdirectory=eris eris --install-all-tools Or install from source: (includes tools) diff --git a/termstr/setup.py b/termstr/setup.py index affb1d0..9547a3a 100755 --- a/termstr/setup.py +++ b/termstr/setup.py @@ -8,7 +8,7 @@ except ImportError: setup(name="termstr", - version="v2024.07.11", + version="v2024.12.07", 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 03f095e..dc9f17a 100644 --- a/termstr/termstr.py +++ b/termstr/termstr.py @@ -10,7 +10,7 @@ import weakref import cwcwidth -__version__ = "v2024.07.11" +__version__ = "v2024.12.07" ESC = "\x1b"