diff --git a/CHANGELOG.md b/CHANGELOG.md index 0a25c1770..40ab847f6 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -18,6 +18,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ### Security +## [0.3.14] - 2022-03-24 + +### Added + + - Account for None, "" values within namespace POST in `/api/v1/specification` #274 + ## [0.3.13] - 2022-03-23 ### Added diff --git a/conda-store-server/setup.py b/conda-store-server/setup.py index f43fcc4ed..f3181c035 100644 --- a/conda-store-server/setup.py +++ b/conda-store-server/setup.py @@ -8,7 +8,7 @@ setup( name="conda-store-server", - version="0.3.13", + version="0.3.14", description="Conda Environment Management, Builds, and Serve", long_description=long_description, long_description_content_type="text/markdown", diff --git a/conda-store/setup.py b/conda-store/setup.py index 6785ac724..131ce0b70 100644 --- a/conda-store/setup.py +++ b/conda-store/setup.py @@ -7,7 +7,7 @@ setup( name="conda-store", - version='0.3.13', + version='0.3.14', url="https://github.com/Quansight/conda-store", author="Chris Ostrouchov", description="A client to interface with conda-store",