From 26795c3f0ebbba1eeca76d8895f0acc34b875ceb Mon Sep 17 00:00:00 2001 From: Spiro Metaxas Date: Sat, 24 Feb 2024 17:27:06 -0500 Subject: [PATCH] Version 2.1.1 --- README.md | 2 +- periodic_table_cli/cli.py | 4 ++-- pyproject.toml | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 330a68a..eb80f11 100644 --- a/README.md +++ b/README.md @@ -258,7 +258,7 @@ The minimum required terminal screen dimensions are 156 columns x 46 rows. When ## Data Sources Data used in the app is stored in an easy to edit [data file](https://github.com/spirometaxas/periodic-table-cli-py/blob/main/periodic_table_cli/data.json). The data is mostly imported from [PubChem](https://pubchem.ncbi.nlm.nih.gov/periodic-table/). -Last Updated January 2024 +Last Updated February 2024 ## License - [MIT](https://github.com/spirometaxas/periodic-table-cli-py/blob/main/LICENSE) © [Spiro Metaxas](https://spirometaxas.com) diff --git a/periodic_table_cli/cli.py b/periodic_table_cli/cli.py index 174591d..9288b87 100644 --- a/periodic_table_cli/cli.py +++ b/periodic_table_cli/cli.py @@ -78,11 +78,11 @@ def print_usage(): ' --verbose, -v Print a complete data chart with all elements (include --mode=data)\n'\ '\n'\ ' Full Docs: https://spirometaxas.com/projects/periodic-table-cli\n\n'\ - ' Last updated January 2024\n'\ + ' Last updated February 2024\n'\ ' ' + get_version() + '\n') def get_version(): - return 'v2.1.0 (Python)' + return 'v2.1.1 (Python)' def get_flags(params): return [param for param in params if param.startswith('-')] diff --git a/pyproject.toml b/pyproject.toml index fbacf93..c6923c4 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -6,7 +6,7 @@ build-backend = "setuptools.build_meta" [project] name = "periodic-table-cli" -version = "2.1.0" +version = "2.1.1" description = "An interactive Periodic Table of Elements app for the console!" readme = "README.md" authors = [{ name = "Spiro Metaxas", email = "spirometaxas@outlook.com" }]