diff --git a/CHANGELOG.md b/CHANGELOG.md index ed9211f..5b38f4e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,15 @@ Observes [Semantic Versioning](https://semver.org/spec/v2.0.0.html) standard and [Keep a Changelog](https://keepachangelog.com/en/1.0.0/) convention. +## [0.5.0] - 2022-09-21 +### Fixed +- Bugs with returning UUID and NaN values PR #128 + +### Added +- Support schemas with a `-` by specifying instead with `__` in dynamic spec PR #128 +- Support for new `antd-table` component. Prior `table` component will be deprecated in the next minor release. PR #128 +- Support for InsertComponent + ## [0.4.1] - 2022-03-24 ### Fixed - Bug with otumat version not being tied to the latest PR #119 diff --git a/docker-compose-dev.yaml b/docker-compose-dev.yaml index 84d4c6e..e0c5355 100644 --- a/docker-compose-dev.yaml +++ b/docker-compose-dev.yaml @@ -32,7 +32,7 @@ services: command: pharus fakeservices.datajoint.io: <<: *net - image: datajoint/nginx:v0.2.2 + image: datajoint/nginx:v0.2.3 environment: - ADD_pharus_TYPE=REST - ADD_pharus_ENDPOINT=pharus:5000 diff --git a/pharus/version.py b/pharus/version.py index e3ffbcb..b74bea2 100644 --- a/pharus/version.py +++ b/pharus/version.py @@ -1,2 +1,2 @@ """Package metadata.""" -__version__ = "0.4.1" +__version__ = "0.5.0"