From ac7c7010df5c3c41e81e0650eaf6fc63a98ed486 Mon Sep 17 00:00:00 2001 From: Andrew Hamilton Date: Sat, 21 Jun 2025 14:43:57 +1000 Subject: [PATCH] Update version to v2025.06.21 --- README.md | 4 ++-- eris/__init__.py | 2 +- fill3/fill3/__init__.py | 2 +- fill3/pyproject.toml | 2 +- lscolors/lscolors/__init__.py | 2 +- lscolors/pyproject.toml | 2 +- packaging/make-readme.py | 4 ++-- pyproject.toml | 8 ++++---- termstr/pyproject.toml | 2 +- termstr/termstr/__init__.py | 2 +- uv.lock | 8 ++++---- 11 files changed, 19 insertions(+), 19 deletions(-) diff --git a/README.md b/README.md index 949bed0..d370231 100644 --- a/README.md +++ b/README.md @@ -12,11 +12,11 @@ Eris can be installed by pipx or [uv](https://docs.astral.sh/uv/getting-started/ To install with pipx: - pipx install git+https://gitlab.com/ahamilton/eris@v2025.06.14 + pipx install git+https://gitlab.com/ahamilton/eris@v2025.06.21 or to install with uv: - uv tool install git+https://gitlab.com/ahamilton/eris@v2025.06.14 + uv tool install git+https://gitlab.com/ahamilton/eris@v2025.06.21 Then use eris to install all the tools it uses: diff --git a/eris/__init__.py b/eris/__init__.py index 60fc7e5..28fc638 100644 --- a/eris/__init__.py +++ b/eris/__init__.py @@ -1 +1 @@ -__version__ = "v2025.06.14" +__version__ = "v2025.06.21" diff --git a/fill3/fill3/__init__.py b/fill3/fill3/__init__.py index aaa424b..b29c624 100755 --- a/fill3/fill3/__init__.py +++ b/fill3/fill3/__init__.py @@ -15,7 +15,7 @@ import fill3.terminal as terminal import termstr -__version__ = "v2025.06.14" +__version__ = "v2025.06.21" ########################## diff --git a/fill3/pyproject.toml b/fill3/pyproject.toml index a48b613..ba2a6ed 100644 --- a/fill3/pyproject.toml +++ b/fill3/pyproject.toml @@ -2,7 +2,7 @@ tool.uv.package = true [project] name = "fill3" -version = "v2025.06.14" +version = "v2025.06.21" 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 992fcfb..3fbef6a 100644 --- a/lscolors/lscolors/__init__.py +++ b/lscolors/lscolors/__init__.py @@ -15,7 +15,7 @@ import lscolors import termstr -__version__ = "v2025.06.14" +__version__ = "v2025.06.21" FILE_KEY = "fi" diff --git a/lscolors/pyproject.toml b/lscolors/pyproject.toml index 1095437..676e8a7 100644 --- a/lscolors/pyproject.toml +++ b/lscolors/pyproject.toml @@ -7,7 +7,7 @@ allow-direct-references = true [project] name = "lscolors" -version = "v2025.06.14" +version = "v2025.06.21" 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 17cd51c..597f826 100755 --- a/packaging/make-readme.py +++ b/packaging/make-readme.py @@ -28,11 +28,11 @@ Eris can be installed by pipx or [uv](https://docs.astral.sh/uv/getting-started/ To install with pipx: - pipx install git+https://gitlab.com/ahamilton/eris@v2025.06.14 + pipx install git+https://gitlab.com/ahamilton/eris@v2025.06.21 or to install with uv: - uv tool install git+https://gitlab.com/ahamilton/eris@v2025.06.14 + uv tool install git+https://gitlab.com/ahamilton/eris@v2025.06.21 Then use eris to install all the tools it uses: diff --git a/pyproject.toml b/pyproject.toml index f521003..d3731e8 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -2,7 +2,7 @@ tool.uv.package = true [project] name = "eris" -version = "v2025.06.14" +version = "v2025.06.21" description = "Eris maintains an up-to-date set of reports for every file in a codebase." readme = "README.md" authors = [ @@ -11,13 +11,13 @@ authors = [ requires-python = ">=3.11" dependencies = [ "docopt-ng==0.9.0", - "fill3 @ git+https://gitlab.com/ahamilton/eris@v2025.06.14#subdirectory=fill3", - "lscolors @ git+https://gitlab.com/ahamilton/eris@v2025.06.14#subdirectory=lscolors", + "fill3 @ git+https://gitlab.com/ahamilton/eris@v2025.06.21#subdirectory=fill3", + "lscolors @ git+https://gitlab.com/ahamilton/eris@v2025.06.21#subdirectory=lscolors", "pexpect==4.9.0", "pillow==11.2.1", "pygments==2.19.1", "pyinotify-elephant-fork==0.0.1", - "termstr @ git+https://gitlab.com/ahamilton/eris@v2025.06.14#subdirectory=termstr", + "termstr @ git+https://gitlab.com/ahamilton/eris@v2025.06.21#subdirectory=termstr", ] [tool.uv.sources] diff --git a/termstr/pyproject.toml b/termstr/pyproject.toml index 8b8d999..01157fb 100644 --- a/termstr/pyproject.toml +++ b/termstr/pyproject.toml @@ -2,7 +2,7 @@ tool.uv.package = true [project] name = "termstr" -version = "v2025.06.14" +version = "v2025.06.21" description = "Termstr provides strings with extra terminal styling." authors = [ { name = "Andrew Hamilton", email = "and_hamilton@yahoo.com" }, diff --git a/termstr/termstr/__init__.py b/termstr/termstr/__init__.py index c1300bd..bae5cc7 100644 --- a/termstr/termstr/__init__.py +++ b/termstr/termstr/__init__.py @@ -10,7 +10,7 @@ import weakref import cwcwidth -__version__ = "v2025.06.14" +__version__ = "v2025.06.21" ESC = "\x1b" diff --git a/uv.lock b/uv.lock index c1536e6..fac5b3e 100644 --- a/uv.lock +++ b/uv.lock @@ -27,7 +27,7 @@ wheels = [ [[package]] name = "eris" -version = "2025.6.14" +version = "2025.6.21" source = { editable = "." } dependencies = [ { name = "docopt-ng" }, @@ -54,7 +54,7 @@ requires-dist = [ [[package]] name = "fill3" -version = "2025.6.14" +version = "2025.6.21" source = { editable = "fill3" } dependencies = [ { name = "termstr" }, @@ -65,7 +65,7 @@ requires-dist = [{ name = "termstr", editable = "termstr" }] [[package]] name = "lscolors" -version = "2025.6.14" +version = "2025.6.21" source = { editable = "lscolors" } dependencies = [ { name = "termstr" }, @@ -171,7 +171,7 @@ sdist = { url = "https://files.pythonhosted.org/packages/d6/b4/b44fccc7040b01449 [[package]] name = "termstr" -version = "2025.6.14" +version = "2025.6.21" source = { editable = "termstr" } dependencies = [ { name = "cwcwidth" },