diff --git a/README.md b/README.md index 2aee49e..69e4ec7 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.17#subdirectory=eris + pipx install --system-site-packages git+https://gitlab.com/ahamilton/eris@v2024.12.18#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 8081cfb..5b7e53c 100644 --- a/eris/eris/__init__.py +++ b/eris/eris/__init__.py @@ -1,3 +1,3 @@ -__version__ = "v2024.12.17" +__version__ = "v2024.12.18" diff --git a/eris/pyproject.toml b/eris/pyproject.toml index 436c127..134c60a 100644 --- a/eris/pyproject.toml +++ b/eris/pyproject.toml @@ -2,7 +2,7 @@ tool.uv.package = true [project] name = "eris" -version = "v2024.12.17" +version = "v2024.12.18" description = "Eris maintains an up-to-date set of reports for every file in a codebase." readme = "README.md" authors = [ @@ -12,13 +12,13 @@ requires-python = ">=3.11" dependencies = [ "decorator==5.1.1", "docopt==0.6.2", - "fill3 @ git+https://gitlab.com/ahamilton/eris@v2024.12.17#subdirectory=fill3", - "lscolors @ git+https://gitlab.com/ahamilton/eris@v2024.12.17#subdirectory=lscolors", + "fill3 @ git+https://gitlab.com/ahamilton/eris@v2024.12.18#subdirectory=fill3", + "lscolors @ git+https://gitlab.com/ahamilton/eris@v2024.12.18#subdirectory=lscolors", "pexpect==4.8.0", "pillow==10.0.0", "pygments==2.16.1", "pyinotify==0.9.6", - "termstr @ git+https://gitlab.com/ahamilton/eris@v2024.12.17#subdirectory=termstr", + "termstr @ git+https://gitlab.com/ahamilton/eris@v2024.12.18#subdirectory=termstr", "toml==0.10.2", ] diff --git a/eris/uv.lock b/eris/uv.lock index 92aca1d..ccc5add 100644 --- a/eris/uv.lock +++ b/eris/uv.lock @@ -24,7 +24,7 @@ sdist = { url = "https://files.pythonhosted.org/packages/a2/55/8f8cab2afd404cf57 [[package]] name = "eris" -version = "2024.12.17" +version = "2024.12.18" source = { editable = "." } dependencies = [ { name = "decorator" }, @@ -43,20 +43,20 @@ dependencies = [ requires-dist = [ { name = "decorator", specifier = "==5.1.1" }, { name = "docopt", specifier = "==0.6.2" }, - { name = "fill3", git = "https://gitlab.com/ahamilton/eris?subdirectory=fill3&rev=v2024.12.17" }, - { name = "lscolors", git = "https://gitlab.com/ahamilton/eris?subdirectory=lscolors&rev=v2024.12.17" }, + { name = "fill3", git = "https://gitlab.com/ahamilton/eris?subdirectory=fill3&rev=v2024.12.18" }, + { name = "lscolors", git = "https://gitlab.com/ahamilton/eris?subdirectory=lscolors&rev=v2024.12.18" }, { name = "pexpect", specifier = "==4.8.0" }, { name = "pillow", specifier = "==10.0.0" }, { name = "pygments", specifier = "==2.16.1" }, { name = "pyinotify", specifier = "==0.9.6" }, - { name = "termstr", git = "https://gitlab.com/ahamilton/eris?subdirectory=termstr&rev=v2024.12.17" }, + { name = "termstr", git = "https://gitlab.com/ahamilton/eris?subdirectory=termstr&rev=v2024.12.18" }, { name = "toml", specifier = "==0.10.2" }, ] [[package]] name = "fill3" version = "2024.12.7" -source = { git = "https://gitlab.com/ahamilton/eris?subdirectory=fill3&rev=v2024.12.17#a6e802e8522aa27551257b32590f045243a0785e" } +source = { git = "https://gitlab.com/ahamilton/eris?subdirectory=fill3&rev=v2024.12.18#a6e802e8522aa27551257b32590f045243a0785e" } dependencies = [ { name = "termstr" }, ] @@ -64,7 +64,7 @@ dependencies = [ [[package]] name = "lscolors" version = "2024.12.7" -source = { git = "https://gitlab.com/ahamilton/eris?subdirectory=lscolors&rev=v2024.12.17#a6e802e8522aa27551257b32590f045243a0785e" } +source = { git = "https://gitlab.com/ahamilton/eris?subdirectory=lscolors&rev=v2024.12.18#a6e802e8522aa27551257b32590f045243a0785e" } dependencies = [ { name = "termstr" }, ] diff --git a/fill3/fill3/__init__.py b/fill3/fill3/__init__.py index 72eef40..f19f718 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.17" +__version__ = "v2024.12.18" ########################## diff --git a/fill3/pyproject.toml b/fill3/pyproject.toml index ef7806e..151df44 100644 --- a/fill3/pyproject.toml +++ b/fill3/pyproject.toml @@ -2,14 +2,14 @@ tool.uv.package = true [project] name = "fill3" -version = "v2024.12.17" +version = "v2024.12.18" description = "Fill3 provides basic widgets for a tui." authors = [ { name = "Andrew Hamilton", email = "and_hamilton@yahoo.com" }, ] requires-python = ">=3.11" dependencies = [ - "termstr @ git+https://gitlab.com/ahamilton/eris@v2024.12.17#subdirectory=termstr", + "termstr @ git+https://gitlab.com/ahamilton/eris@v2024.12.18#subdirectory=termstr", ] [project.urls] diff --git a/fill3/uv.lock b/fill3/uv.lock index 6e35ab6..ec1de60 100644 --- a/fill3/uv.lock +++ b/fill3/uv.lock @@ -9,19 +9,19 @@ sdist = { url = "https://files.pythonhosted.org/packages/38/17/aadd0c6190dca91aa [[package]] name = "fill3" -version = "2024.12.17" +version = "2024.12.18" source = { editable = "." } dependencies = [ { name = "termstr" }, ] [package.metadata] -requires-dist = [{ name = "termstr", git = "https://gitlab.com/ahamilton/eris?subdirectory=termstr&rev=v2024.12.17" }] +requires-dist = [{ name = "termstr", git = "https://gitlab.com/ahamilton/eris?subdirectory=termstr&rev=v2024.12.18" }] [[package]] name = "termstr" version = "2024.12.7" -source = { git = "https://gitlab.com/ahamilton/eris?subdirectory=termstr&rev=v2024.12.17#a6e802e8522aa27551257b32590f045243a0785e" } +source = { git = "https://gitlab.com/ahamilton/eris?subdirectory=termstr&rev=v2024.12.18#a6e802e8522aa27551257b32590f045243a0785e" } dependencies = [ { name = "cwcwidth" }, ] diff --git a/lscolors/lscolors/__init__.py b/lscolors/lscolors/__init__.py index 40e86d3..f1ded1a 100644 --- a/lscolors/lscolors/__init__.py +++ b/lscolors/lscolors/__init__.py @@ -15,7 +15,7 @@ import lscolors import termstr -__version__ = "v2024.12.17" +__version__ = "v2024.12.18" FILE_KEY = "fi" diff --git a/lscolors/pyproject.toml b/lscolors/pyproject.toml index 004ab0a..7fd4544 100644 --- a/lscolors/pyproject.toml +++ b/lscolors/pyproject.toml @@ -2,14 +2,14 @@ tool.uv.package = true [project] name = "lscolors" -version = "v2024.12.17" +version = "v2024.12.18" description = "Give coloring for file types as in the ls command." authors = [ { name = "Andrew Hamilton", email = "and_hamilton@yahoo.com" }, ] requires-python = ">=3.11" dependencies = [ - "termstr @ git+https://gitlab.com/ahamilton/eris@v2024.12.17#subdirectory=termstr", + "termstr @ git+https://gitlab.com/ahamilton/eris@v2024.12.18#subdirectory=termstr", ] [project.urls] diff --git a/lscolors/uv.lock b/lscolors/uv.lock index 984f401..c9b3255 100644 --- a/lscolors/uv.lock +++ b/lscolors/uv.lock @@ -9,19 +9,19 @@ sdist = { url = "https://files.pythonhosted.org/packages/38/17/aadd0c6190dca91aa [[package]] name = "lscolors" -version = "2024.12.17" +version = "2024.12.18" source = { editable = "." } dependencies = [ { name = "termstr" }, ] [package.metadata] -requires-dist = [{ name = "termstr", git = "https://gitlab.com/ahamilton/eris?subdirectory=termstr&rev=v2024.12.17" }] +requires-dist = [{ name = "termstr", git = "https://gitlab.com/ahamilton/eris?subdirectory=termstr&rev=v2024.12.18" }] [[package]] name = "termstr" version = "2024.12.7" -source = { git = "https://gitlab.com/ahamilton/eris?subdirectory=termstr&rev=v2024.12.17#a6e802e8522aa27551257b32590f045243a0785e" } +source = { git = "https://gitlab.com/ahamilton/eris?subdirectory=termstr&rev=v2024.12.18#a6e802e8522aa27551257b32590f045243a0785e" } dependencies = [ { name = "cwcwidth" }, ] diff --git a/packaging/make-readme.py b/packaging/make-readme.py index 070afb0..97cd16f 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.17#subdirectory=eris + pipx install --system-site-packages git+https://gitlab.com/ahamilton/eris@v2024.12.18#subdirectory=eris eris --install-all-tools Or install from source: (includes tools) diff --git a/termstr/pyproject.toml b/termstr/pyproject.toml index d719af2..8c22922 100644 --- a/termstr/pyproject.toml +++ b/termstr/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "termstr" -version = "v2024.12.17" +version = "v2024.12.18" 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 cc085b5..109dc72 100644 --- a/termstr/termstr.py +++ b/termstr/termstr.py @@ -10,7 +10,7 @@ import weakref import cwcwidth -__version__ = "v2024.12.17" +__version__ = "v2024.12.18" ESC = "\x1b" diff --git a/termstr/uv.lock b/termstr/uv.lock index f262c5b..e212787 100644 --- a/termstr/uv.lock +++ b/termstr/uv.lock @@ -9,7 +9,7 @@ sdist = { url = "https://files.pythonhosted.org/packages/38/17/aadd0c6190dca91aa [[package]] name = "termstr" -version = "2024.12.17" +version = "2024.12.18" source = { virtual = "." } dependencies = [ { name = "cwcwidth" },