diff --git a/README.md b/README.md index 962846a..fd580a2 100644 --- a/README.md +++ b/README.md @@ -137,17 +137,20 @@ Of course, there are many more customizations and ways you can use ``CytofDR``. There you will find ways to install our package and get started! Also, we offer tutorials on customizations, working with DR methods, and finally our detailed evaluation framework. We hope that you can find what you need over there! -## Latest Release: v0.2.1 +## Latest Release: v0.2.2 This is a minor maintenance update of v0.2.x with a few improvements on documentation and docstrings. +This is a minor maintenance update of v0.2.x with updated references and documentation. + ### Changes and New Features -- Update licensing information +- Updated referneces and citation information in all relavent documentaion pages +- Removed a warning on SAUCIE's installation documentation ### Improvements -- Improve documentation and docstrings +- Update-to-date documentation and references ### Deprecations diff --git a/docs/source/change/index.rst b/docs/source/change/index.rst index edc04e9..520ce6b 100644 --- a/docs/source/change/index.rst +++ b/docs/source/change/index.rst @@ -9,25 +9,26 @@ doing! ------------------------ ************************ -Latest Release: v0.2.1 +Latest Release: v0.2.2 ************************ -This is a minor maintenance update of v0.2.x with a few improvements on documentation and docstrings. +This is a minor maintenance update of v0.2.x with updated references and documentation. Changes and New Features -------------------------- -- Update licensing information +- Updated referneces and citation information in all relavent documentaion pages +- Removed a warning on SAUCIE's installation documentation Improvements ---------------- +-------------- -- Improve documentation and docstrings +- Update-to-date documentation and references Deprecations ---------------- -- (Since 0.2.0) The `comparison_classes` parameter of the `EvaluationMetrics.embedding_concordance` method will no longer accept `str` input. +- (Since v0.2.0) The `comparison_classes` parameter of the `EvaluationMetrics.embedding_concordance` method will no longer accept `str` input. .. toctree:: diff --git a/docs/source/change/releases.rst b/docs/source/change/releases.rst index 80aa0e1..fc44adb 100644 --- a/docs/source/change/releases.rst +++ b/docs/source/change/releases.rst @@ -6,6 +6,29 @@ Here we include our release notes for past releases in sequential order. -------------------- +******** +v0.2.2 +******** + +This is a minor maintenance update of v0.2.x with updated references and documentation. + +Changes and New Features +-------------------------- + +- Updated referneces and citation information in all relavent documentaion pages +- Removed a warning on SAUCIE's installation documentation + +Improvements +-------------- + +- Update-to-date documentation and references + +Deprecations +---------------- + +- (Since v0.2.0) The `comparison_classes` parameter of the `EvaluationMetrics.embedding_concordance` method will no longer accept `str` input. + + ******** v0.2.1 ******** diff --git a/docs/source/conf.py b/docs/source/conf.py index 5b73713..b8d0d7c 100644 --- a/docs/source/conf.py +++ b/docs/source/conf.py @@ -20,7 +20,7 @@ project = 'CytofDR' copyright = '2022-2023, CytofDR Developers' author = 'Kevin Wang' -release = '0.2.1' +release = '0.2.2' extensions = [ "sphinx_rtd_theme", diff --git a/meta.yaml b/meta.yaml index 68ee70c..7683ed6 100644 --- a/meta.yaml +++ b/meta.yaml @@ -1,5 +1,5 @@ {% set name = "CytofDR" %} -{% set version = "0.2.1" %} +{% set version = "0.2.2" %} package: name: "{{ name|lower }}" diff --git a/setup.py b/setup.py index 92701e0..4ba4cf0 100644 --- a/setup.py +++ b/setup.py @@ -4,7 +4,7 @@ import shutil import distutils.cmd -VERSION = "0.2.1" +VERSION = "0.2.2" class PypiCommand(distutils.cmd.Command):