From d1926742364459c8972eb72a1317d4d10ab1f6eb Mon Sep 17 00:00:00 2001 From: Andrew Hamilton Date: Mon, 24 Jan 2022 23:08:29 +1000 Subject: [PATCH] Update version to v2022.01.24 --- README.md | 2 +- eris/eris/__init__.py | 2 +- eris/setup.py | 2 +- fill3/fill3/__init__.py | 2 +- fill3/setup.py | 2 +- lscolors/lscolors.py | 2 +- lscolors/setup.py | 2 +- packaging/make-readme.py | 2 +- termstr/setup.py | 2 +- termstr/termstr.py | 2 +- 10 files changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index a958d7d..df6c57e 100644 --- a/README.md +++ b/README.md @@ -11,7 +11,7 @@ Eris maintains an up-to-date set of reports for every file in a codebase. Install eris directly using pip, and apt install the tools eris relies on: pip install --upgrade pip # A recent version of pip is needed. - pip install git+https://github.com/ahamilton/eris@v2022.01.22#subdirectory=eris + pip install git+https://github.com/ahamilton/eris@v2022.01.24#subdirectory=eris eris --apt-install-tools Or install from source: (including tools) diff --git a/eris/eris/__init__.py b/eris/eris/__init__.py index af28402..30df7b8 100644 --- a/eris/eris/__init__.py +++ b/eris/eris/__init__.py @@ -1,3 +1,3 @@ -__version__ = "v2022.01.22" +__version__ = "v2022.01.24" diff --git a/eris/setup.py b/eris/setup.py index 7e50702..ede2cd8 100755 --- a/eris/setup.py +++ b/eris/setup.py @@ -10,7 +10,7 @@ except ImportError: REPO_PATH = os.path.dirname(os.getcwd()) setup(name="eris", - version="v2022.01.22", + version="v2022.01.24", description=("Eris maintains an up-to-date set of reports for every file in a codebase."), url="https://github.com/ahamilton/eris", author="Andrew Hamilton", diff --git a/fill3/fill3/__init__.py b/fill3/fill3/__init__.py index ef8bbc7..8785945 100755 --- a/fill3/fill3/__init__.py +++ b/fill3/fill3/__init__.py @@ -13,7 +13,7 @@ import fill3.terminal as terminal import termstr -__version__ = "v2022.01.22" +__version__ = "v2022.01.24" ########################## diff --git a/fill3/setup.py b/fill3/setup.py index b9860b8..547d78e 100755 --- a/fill3/setup.py +++ b/fill3/setup.py @@ -10,7 +10,7 @@ except ImportError: REPO_PATH = os.path.dirname(os.getcwd()) setup(name="fill3", - version="v2022.01.22", + version="v2022.01.24", description=("Fill3 provides basic widgets for a tui."), url="https://github.com/ahamilton/eris", author="Andrew Hamilton", diff --git a/lscolors/lscolors.py b/lscolors/lscolors.py index 1c8be84..40ee3ce 100644 --- a/lscolors/lscolors.py +++ b/lscolors/lscolors.py @@ -9,7 +9,7 @@ import stat import syslog -__version__ = "v2022.01.22" +__version__ = "v2022.01.24" FILE_KEY = "fi" diff --git a/lscolors/setup.py b/lscolors/setup.py index 6794af2..cc7815b 100755 --- a/lscolors/setup.py +++ b/lscolors/setup.py @@ -8,7 +8,7 @@ except ImportError: setup(name="lscolors", - version="v2022.01.22", + version="v2022.01.24", description=("Give coloring for file types as in the ls command."), url="https://github.com/ahamilton/eris", author="Andrew Hamilton", diff --git a/packaging/make-readme.py b/packaging/make-readme.py index 9489b73..c655c35 100755 --- a/packaging/make-readme.py +++ b/packaging/make-readme.py @@ -27,7 +27,7 @@ Eris maintains an up-to-date set of reports for every file in a codebase. Install eris directly using pip, and apt install the tools eris relies on: pip install --upgrade pip # A recent version of pip is needed. - pip install git+https://github.com/ahamilton/eris@v2022.01.22#subdirectory=eris + pip install git+https://github.com/ahamilton/eris@v2022.01.24#subdirectory=eris eris --apt-install-tools Or install from source: (including tools) diff --git a/termstr/setup.py b/termstr/setup.py index 36a3fb8..f2bc8d8 100755 --- a/termstr/setup.py +++ b/termstr/setup.py @@ -8,7 +8,7 @@ except ImportError: setup(name="termstr", - version="v2022.01.22", + version="v2022.01.24", description=("Termstr provides strings with extra terminal styling."), url="https://github.com/ahamilton/eris", author="Andrew Hamilton", diff --git a/termstr/termstr.py b/termstr/termstr.py index 36ea2d3..a7a9669 100644 --- a/termstr/termstr.py +++ b/termstr/termstr.py @@ -10,7 +10,7 @@ import weakref import cwcwidth -__version__ = "v2022.01.22" +__version__ = "v2022.01.24" ESC = "\x1b"