diff --git a/CHANGELOG.md b/CHANGELOG.md index 0b98888..f0f9bb0 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -9,7 +9,9 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - `rd.flow.moi` calculates viral MOI, creating summary graphs and tables. ### Modified - `rd.outfile` now creates necessary subdirectories within rootdir/datadir. -- `rd.flow.load_csv_with_metadata` +- `rd.flow.load_csv_with_metadata` now allows `str` and `Path` arguments +- `rd.flow.load_csv_with_metadata` properly handles well IDs up to A1-P24 (384-well plate) +- `rd.flow.load_csv_with_metadata` fills unspecified metadata with `NA` ## [0.1.0] - 2022-03-11 ### Added diff --git a/README.md b/README.md index 9231b31..9b492d6 100644 --- a/README.md +++ b/README.md @@ -46,11 +46,14 @@ having to re-install after each update. ## Changelog See the [CHANGELOG](CHANGELOG.md) for detailed changes. ``` -## [0.1.0] - 2022-03-11 +## [0.2.0] - 2022-06-17 ### Added -- Initial flow processing workflow +- `rd.flow.moi` calculates viral MOI, creating summary graphs and tables. ### Modified -- Automatic use of black, isort, and flake in CI +- `rd.outfile` now creates necessary subdirectories within rootdir/datadir. +- `rd.flow.load_csv_with_metadata` now allows `str` and `Path` arguments +- `rd.flow.load_csv_with_metadata` properly handles well IDs up to A1-P24 (384-well plate) +- `rd.flow.load_csv_with_metadata` fills unspecified metadata with `NA` ``` ## License diff --git a/setup.py b/setup.py index be8a805..fa25efb 100644 --- a/setup.py +++ b/setup.py @@ -12,7 +12,7 @@ setuptools.setup( name='rushd', - version='0.1.0', + version='0.2.0', author='Christopher Johnstone', author_email='meson800@gmail.com', description='Package for maintaining robust, reproducible data management.',