diff --git a/README.md b/README.md index a74b14d..605cce2 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.20#subdirectory=eris + pipx install --system-site-packages git+https://gitlab.com/ahamilton/eris@v2024.12.28#subdirectory=eris eris --install-all-tools Or install from source: (includes tools) diff --git a/eris/__init__.py b/eris/__init__.py index 11c7257..053584c 100644 --- a/eris/__init__.py +++ b/eris/__init__.py @@ -1,3 +1,3 @@ -__version__ = "v2024.12.20" +__version__ = "v2024.12.28" diff --git a/fill3/fill3/__init__.py b/fill3/fill3/__init__.py index 4acc885..c8ff982 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.20" +__version__ = "v2024.12.28" ########################## diff --git a/fill3/pyproject.toml b/fill3/pyproject.toml index 0893327..4a27f37 100644 --- a/fill3/pyproject.toml +++ b/fill3/pyproject.toml @@ -2,7 +2,7 @@ tool.uv.package = true [project] name = "fill3" -version = "v2024.12.20" +version = "v2024.12.28" 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 5f89c6b..c4aa5c5 100644 --- a/lscolors/lscolors/__init__.py +++ b/lscolors/lscolors/__init__.py @@ -15,7 +15,7 @@ import lscolors import termstr -__version__ = "v2024.12.20" +__version__ = "v2024.12.28" FILE_KEY = "fi" diff --git a/lscolors/pyproject.toml b/lscolors/pyproject.toml index e2a2617..607168c 100644 --- a/lscolors/pyproject.toml +++ b/lscolors/pyproject.toml @@ -7,7 +7,7 @@ allow-direct-references = true [project] name = "lscolors" -version = "v2024.12.20" +version = "v2024.12.28" 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 75ee792..806d8fd 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.20#subdirectory=eris + pipx install --system-site-packages git+https://gitlab.com/ahamilton/eris@v2024.12.28#subdirectory=eris eris --install-all-tools Or install from source: (includes tools) diff --git a/pyproject.toml b/pyproject.toml index f155617..3c71a8a 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -2,7 +2,7 @@ tool.uv.package = true [project] name = "eris" -version = "v2024.12.20" +version = "v2024.12.28" description = "Eris maintains an up-to-date set of reports for every file in a codebase." readme = "README.md" authors = [ diff --git a/termstr/pyproject.toml b/termstr/pyproject.toml index c3d8639..93bed9b 100644 --- a/termstr/pyproject.toml +++ b/termstr/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "termstr" -version = "v2024.12.20" +version = "v2024.12.28" 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 1644ac2..2fcee20 100644 --- a/termstr/termstr.py +++ b/termstr/termstr.py @@ -10,7 +10,7 @@ import weakref import cwcwidth -__version__ = "v2024.12.20" +__version__ = "v2024.12.28" ESC = "\x1b"