From 9e8c41749a6fd82fa91894f9b54a3d8aaf7a8831 Mon Sep 17 00:00:00 2001 From: Andrew Hamilton Date: Fri, 20 Dec 2024 22:48:30 +1000 Subject: [PATCH] Update version to v2024.12.20 --- README.md | 2 +- eris/eris/__init__.py | 2 +- eris/pyproject.toml | 2 +- fill3/fill3/__init__.py | 2 +- fill3/pyproject.toml | 2 +- lscolors/lscolors/__init__.py | 2 +- lscolors/pyproject.toml | 2 +- packaging/make-readme.py | 2 +- termstr/pyproject.toml | 2 +- termstr/termstr.py | 2 +- 10 files changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 69e4ec7..a74b14d 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.12.18#subdirectory=eris + pipx install --system-site-packages git+https://gitlab.com/ahamilton/eris@v2024.12.20#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 5b7e53c..11c7257 100644 --- a/eris/eris/__init__.py +++ b/eris/eris/__init__.py @@ -1,3 +1,3 @@ -__version__ = "v2024.12.18" +__version__ = "v2024.12.20" diff --git a/eris/pyproject.toml b/eris/pyproject.toml index 77d3c8e..4a3109b 100644 --- a/eris/pyproject.toml +++ b/eris/pyproject.toml @@ -7,7 +7,7 @@ fill3 = { path = "../fill3", editable = true } [project] name = "eris" -version = "v2024.12.18" +version = "v2024.12.20" description = "Eris maintains an up-to-date set of reports for every file in a codebase." readme = "README.md" authors = [ diff --git a/fill3/fill3/__init__.py b/fill3/fill3/__init__.py index f19f718..4acc885 100755 --- a/fill3/fill3/__init__.py +++ b/fill3/fill3/__init__.py @@ -15,7 +15,7 @@ import fill3.terminal as terminal import termstr -__version__ = "v2024.12.18" +__version__ = "v2024.12.20" ########################## diff --git a/fill3/pyproject.toml b/fill3/pyproject.toml index 8799e54..c1468f8 100644 --- a/fill3/pyproject.toml +++ b/fill3/pyproject.toml @@ -5,7 +5,7 @@ termstr = { path = "../termstr" } [project] name = "fill3" -version = "v2024.12.18" +version = "v2024.12.20" description = "Fill3 provides basic widgets for a tui." authors = [ { name = "Andrew Hamilton", email = "and_hamilton@yahoo.com" }, diff --git a/lscolors/lscolors/__init__.py b/lscolors/lscolors/__init__.py index f1ded1a..5f89c6b 100644 --- a/lscolors/lscolors/__init__.py +++ b/lscolors/lscolors/__init__.py @@ -15,7 +15,7 @@ import lscolors import termstr -__version__ = "v2024.12.18" +__version__ = "v2024.12.20" FILE_KEY = "fi" diff --git a/lscolors/pyproject.toml b/lscolors/pyproject.toml index 3369232..e5676d8 100644 --- a/lscolors/pyproject.toml +++ b/lscolors/pyproject.toml @@ -10,7 +10,7 @@ termstr = { path = "../termstr" } [project] name = "lscolors" -version = "v2024.12.18" +version = "v2024.12.20" description = "Give coloring for file types as in the ls command." authors = [ { name = "Andrew Hamilton", email = "and_hamilton@yahoo.com" }, diff --git a/packaging/make-readme.py b/packaging/make-readme.py index 97cd16f..75ee792 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.12.18#subdirectory=eris + pipx install --system-site-packages git+https://gitlab.com/ahamilton/eris@v2024.12.20#subdirectory=eris eris --install-all-tools Or install from source: (includes tools) diff --git a/termstr/pyproject.toml b/termstr/pyproject.toml index 8157768..d268d31 100644 --- a/termstr/pyproject.toml +++ b/termstr/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "termstr" -version = "v2024.12.18" +version = "v2024.12.20" description = "Termstr provides strings with extra terminal styling." authors = [ { name = "Andrew Hamilton", email = "and_hamilton@yahoo.com" }, diff --git a/termstr/termstr.py b/termstr/termstr.py index 109dc72..1644ac2 100644 --- a/termstr/termstr.py +++ b/termstr/termstr.py @@ -10,7 +10,7 @@ import weakref import cwcwidth -__version__ = "v2024.12.18" +__version__ = "v2024.12.20" ESC = "\x1b"