diff --git a/README.md b/README.md index 1f6e60b..de7fd41 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.10#subdirectory=eris + pipx install --system-site-packages git+https://gitlab.com/ahamilton/eris@v2024.12.11#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 2264936..8dd79a9 100644 --- a/eris/eris/__init__.py +++ b/eris/eris/__init__.py @@ -1,3 +1,3 @@ -__version__ = "v2024.12.10" +__version__ = "v2024.12.11" diff --git a/eris/pyproject.toml b/eris/pyproject.toml index 765c627..055c73a 100644 --- a/eris/pyproject.toml +++ b/eris/pyproject.toml @@ -2,7 +2,7 @@ tool.uv.package = true [project] name = "eris" -version = "v2024.12.10" +version = "v2024.12.11" 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.10#subdirectory=fill3", - "lscolors @ git+https://gitlab.com/ahamilton/eris@v2024.12.10#subdirectory=lscolors", + "fill3 @ git+https://gitlab.com/ahamilton/eris@v2024.12.11#subdirectory=fill3", + "lscolors @ git+https://gitlab.com/ahamilton/eris@v2024.12.11#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.10#subdirectory=termstr", + "termstr @ git+https://gitlab.com/ahamilton/eris@v2024.12.11#subdirectory=termstr", "toml==0.10.2", ] diff --git a/eris/uv.lock b/eris/uv.lock index 70f97e0..19f9aa6 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.7" +version = "2024.12.11" 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.10" }, - { name = "lscolors", git = "https://gitlab.com/ahamilton/eris?subdirectory=lscolors&rev=v2024.12.10" }, + { name = "fill3", git = "https://gitlab.com/ahamilton/eris?subdirectory=fill3&rev=v2024.12.11" }, + { name = "lscolors", git = "https://gitlab.com/ahamilton/eris?subdirectory=lscolors&rev=v2024.12.11" }, { 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.10" }, + { name = "termstr", git = "https://gitlab.com/ahamilton/eris?subdirectory=termstr&rev=v2024.12.11" }, { 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.10#a6e802e8522aa27551257b32590f045243a0785e" } +source = { git = "https://gitlab.com/ahamilton/eris?subdirectory=fill3&rev=v2024.12.11#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.10#a6e802e8522aa27551257b32590f045243a0785e" } +source = { git = "https://gitlab.com/ahamilton/eris?subdirectory=lscolors&rev=v2024.12.11#a6e802e8522aa27551257b32590f045243a0785e" } dependencies = [ { name = "termstr" }, ] @@ -136,7 +136,7 @@ sdist = { url = "https://files.pythonhosted.org/packages/e3/c0/fd5b18dde17c12496 [[package]] name = "termstr" version = "2024.12.7" -source = { git = "https://gitlab.com/ahamilton/eris?subdirectory=termstr&rev=v2024.12.10#a6e802e8522aa27551257b32590f045243a0785e" } +source = { git = "https://gitlab.com/ahamilton/eris?subdirectory=termstr&rev=v2024.12.07#a6e802e8522aa27551257b32590f045243a0785e" } dependencies = [ { name = "cwcwidth" }, ] diff --git a/fill3/fill3/__init__.py b/fill3/fill3/__init__.py index 266704f..442e4c5 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.10" +__version__ = "v2024.12.11" ########################## diff --git a/fill3/pyproject.toml b/fill3/pyproject.toml index 5ef67f7..70831ac 100644 --- a/fill3/pyproject.toml +++ b/fill3/pyproject.toml @@ -1,13 +1,13 @@ [project] name = "fill3" -version = "v2024.12.10" +version = "v2024.12.11" 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.10#subdirectory=termstr", + "termstr @ git+https://gitlab.com/ahamilton/eris@v2024.12.11#subdirectory=termstr", ] [project.urls] diff --git a/fill3/uv.lock b/fill3/uv.lock index 2514296..34e6d9b 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.7" +version = "2024.12.11" source = { virtual = "." } dependencies = [ { name = "termstr" }, ] [package.metadata] -requires-dist = [{ name = "termstr", git = "https://gitlab.com/ahamilton/eris?subdirectory=termstr&rev=v2024.12.10" }] +requires-dist = [{ name = "termstr", git = "https://gitlab.com/ahamilton/eris?subdirectory=termstr&rev=v2024.12.11" }] [[package]] name = "termstr" version = "2024.12.7" -source = { git = "https://gitlab.com/ahamilton/eris?subdirectory=termstr&rev=v2024.12.10#a6e802e8522aa27551257b32590f045243a0785e" } +source = { git = "https://gitlab.com/ahamilton/eris?subdirectory=termstr&rev=v2024.12.11#a6e802e8522aa27551257b32590f045243a0785e" } dependencies = [ { name = "cwcwidth" }, ] diff --git a/lscolors/lscolors/__init__.py b/lscolors/lscolors/__init__.py index 754315a..071ccda 100644 --- a/lscolors/lscolors/__init__.py +++ b/lscolors/lscolors/__init__.py @@ -15,7 +15,7 @@ import lscolors import termstr -__version__ = "v2024.12.10" +__version__ = "v2024.12.11" FILE_KEY = "fi" diff --git a/lscolors/pyproject.toml b/lscolors/pyproject.toml index 0b1d11d..e26f2cc 100644 --- a/lscolors/pyproject.toml +++ b/lscolors/pyproject.toml @@ -1,13 +1,13 @@ [project] name = "lscolors" -version = "v2024.12.10" +version = "v2024.12.11" 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.10#subdirectory=termstr", + "termstr @ git+https://gitlab.com/ahamilton/eris@v2024.12.11#subdirectory=termstr", ] [project.urls] diff --git a/lscolors/uv.lock b/lscolors/uv.lock index a161798..c7332e1 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.7" +version = "2024.12.11" source = { virtual = "." } dependencies = [ { name = "termstr" }, ] [package.metadata] -requires-dist = [{ name = "termstr", git = "https://gitlab.com/ahamilton/eris?subdirectory=termstr&rev=v2024.12.10" }] +requires-dist = [{ name = "termstr", git = "https://gitlab.com/ahamilton/eris?subdirectory=termstr&rev=v2024.12.11" }] [[package]] name = "termstr" version = "2024.12.7" -source = { git = "https://gitlab.com/ahamilton/eris?subdirectory=termstr&rev=v2024.12.10#a6e802e8522aa27551257b32590f045243a0785e" } +source = { git = "https://gitlab.com/ahamilton/eris?subdirectory=termstr&rev=v2024.12.11#a6e802e8522aa27551257b32590f045243a0785e" } dependencies = [ { name = "cwcwidth" }, ] diff --git a/packaging/make-readme.py b/packaging/make-readme.py index 77108e2..d92b928 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.10#subdirectory=eris + pipx install --system-site-packages git+https://gitlab.com/ahamilton/eris@v2024.12.11#subdirectory=eris eris --install-all-tools Or install from source: (includes tools) diff --git a/termstr/pyproject.toml b/termstr/pyproject.toml index 4fd9313..5396326 100644 --- a/termstr/pyproject.toml +++ b/termstr/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "termstr" -version = "v2024.12.10" +version = "v2024.12.11" 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 47a862d..4c00f4e 100644 --- a/termstr/termstr.py +++ b/termstr/termstr.py @@ -10,7 +10,7 @@ import weakref import cwcwidth -__version__ = "v2024.12.10" +__version__ = "v2024.12.11" ESC = "\x1b" diff --git a/termstr/uv.lock b/termstr/uv.lock index 1808433..786fc89 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.7" +version = "2024.12.11" source = { virtual = "." } dependencies = [ { name = "cwcwidth" },