Update version to v2022.04.25

This commit is contained in:
Andrew Hamilton 2022-04-25 16:27:31 +10:00
parent f244571b2d
commit 65fd97cdef
10 changed files with 12 additions and 12 deletions

View file

@ -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

View file

@ -1,3 +1,3 @@
__version__ = "v2022.04.23"
__version__ = "v2022.04.25"

View file

@ -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",

View file

@ -14,7 +14,7 @@ import fill3.terminal as terminal
import termstr
__version__ = "v2022.04.23"
__version__ = "v2022.04.25"
##########################

View file

@ -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",

View file

@ -9,7 +9,7 @@ import stat
import syslog
__version__ = "v2022.04.23"
__version__ = "v2022.04.25"
FILE_KEY = "fi"

View file

@ -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",

View file

@ -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

View file

@ -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",

View file

@ -10,7 +10,7 @@ import weakref
import cwcwidth
__version__ = "v2022.04.23"
__version__ = "v2022.04.25"
ESC = "\x1b"