diff --git a/README.md b/README.md index df7701f..202c100 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.04.23#subdirectory=eris + pip install git+https://github.com/ahamilton/eris@v2022.04.25#subdirectory=eris eris --apt-install-tools Or install from source: (including tools) @@ -42,7 +42,7 @@ Then to run: #### AppImage # Download AppImage file from github releases page: - wget "https://github.com/ahamilton/eris/releases/download/v2022-04-23/eris_2022.04.23.AppImage" + wget "https://github.com/ahamilton/eris/releases/download/v2022.04.25/eris_2022.04.23.AppImage" chmod +x eris_2022.04.23.AppImage mv eris_2022.04.23.AppImage ~/bin/eris # e.g. Put appimage in your PATH diff --git a/eris/eris/__init__.py b/eris/eris/__init__.py index d1f6bd4..9f459be 100644 --- a/eris/eris/__init__.py +++ b/eris/eris/__init__.py @@ -1,3 +1,3 @@ -__version__ = "v2022.04.23" +__version__ = "v2022.04.25" diff --git a/eris/setup.py b/eris/setup.py index fe41e29..b458e8e 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.04.23", + version="v2022.04.25", 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 a3cd95c..f119339 100755 --- a/fill3/fill3/__init__.py +++ b/fill3/fill3/__init__.py @@ -14,7 +14,7 @@ import fill3.terminal as terminal import termstr -__version__ = "v2022.04.23" +__version__ = "v2022.04.25" ########################## diff --git a/fill3/setup.py b/fill3/setup.py index 6eef1dd..bc3d985 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.04.23", + version="v2022.04.25", 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 fddbd64..a8196ac 100644 --- a/lscolors/lscolors.py +++ b/lscolors/lscolors.py @@ -9,7 +9,7 @@ import stat import syslog -__version__ = "v2022.04.23" +__version__ = "v2022.04.25" FILE_KEY = "fi" diff --git a/lscolors/setup.py b/lscolors/setup.py index 8b87be9..5502bd4 100755 --- a/lscolors/setup.py +++ b/lscolors/setup.py @@ -8,7 +8,7 @@ except ImportError: setup(name="lscolors", - version="v2022.04.23", + version="v2022.04.25", 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 8bfbb23..74bb650 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.04.23#subdirectory=eris + pip install git+https://github.com/ahamilton/eris@v2022.04.25#subdirectory=eris eris --apt-install-tools Or install from source: (including tools) @@ -58,7 +58,7 @@ Then to run: #### AppImage # Download AppImage file from github releases page: - wget "https://github.com/ahamilton/eris/releases/download/v2022-04-23/eris_2022.04.23.AppImage" + wget "https://github.com/ahamilton/eris/releases/download/v2022.04.25/eris_2022.04.23.AppImage" chmod +x eris_2022.04.23.AppImage mv eris_2022.04.23.AppImage ~/bin/eris # e.g. Put appimage in your PATH diff --git a/termstr/setup.py b/termstr/setup.py index 537021f..e6e8094 100755 --- a/termstr/setup.py +++ b/termstr/setup.py @@ -8,7 +8,7 @@ except ImportError: setup(name="termstr", - version="v2022.04.23", + version="v2022.04.25", 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 eb6dbba..a82e192 100644 --- a/termstr/termstr.py +++ b/termstr/termstr.py @@ -10,7 +10,7 @@ import weakref import cwcwidth -__version__ = "v2022.04.23" +__version__ = "v2022.04.25" ESC = "\x1b"