From 5492af96e4a58407d86112c4a61a4987113e7caa Mon Sep 17 00:00:00 2001 From: Shahzeb Siddiqui Date: Tue, 18 Oct 2022 15:55:51 -0400 Subject: [PATCH] update version to 0.3.0 update changelog update gitignore file --- .gitignore | 5 +++++ CHANGELOG.rst | 9 +++++++++ lmod/__init__.py | 2 +- 3 files changed, 15 insertions(+), 1 deletion(-) diff --git a/.gitignore b/.gitignore index cecf020..dff7ec8 100644 --- a/.gitignore +++ b/.gitignore @@ -8,6 +8,9 @@ lmodule.egg-info/ dist/ build/ +# pipenv +Pipfile + # C extensions *.so @@ -17,6 +20,8 @@ pip-delete-this-directory.txt # Unit test / coverage reports htmlcov/ +coverage.json +coverage.xml .coverage .coverage.* .cache diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 375f167..39f7d1a 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -1,3 +1,12 @@ +v0.3.0 - Oct 18th, 2022 +------------------------- + +- Make sure all commands work in login shell with `Module` class `#23 `_. +- Update Documentation for modules class +- Update codecov setting for commenting on PRs `#25 `_ +- Update black setting in regression test, pre-commit and applying to source code `#31 `_ +- Increase regression test coverage for `spider` class `#34 `_ + v0.2.0 - Oct 24 2021 --------------------- diff --git a/lmod/__init__.py b/lmod/__init__.py index 721d572..52c7006 100644 --- a/lmod/__init__.py +++ b/lmod/__init__.py @@ -1,2 +1,2 @@ -LMODULE_VERSION = "0.2.0" +LMODULE_VERSION = "0.3.0" __version__ = LMODULE_VERSION