diff --git a/CHANGELOG.md b/CHANGELOG.md index 1ff6040f4..d333d781d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,11 @@ # CHANGELOG +## 0.10.0 (2020-02-11) + +- Added support for `Apollo Federation`. +- Added the ability to send queries to the same channel as the subscription via WebSocket. + + ## 0.9.0 (2019-12-11) - Updated `graphql-core-next` to `graphql-core` 3. diff --git a/README.md b/README.md index eadcf3ec7..172eab4d9 100644 --- a/README.md +++ b/README.md @@ -36,6 +36,7 @@ Documentation is available [here](https://ariadnegraphql.org). - Support for [Apollo GraphQL extension for Visual Studio Code](https://marketplace.visualstudio.com/items?itemName=apollographql.vscode-apollo). - GraphQL syntax validation via `gql()` helper function. Also provides colorization if Apollo GraphQL extension is installed. - No global state or object registry, support for multiple GraphQL APIs in same codebase with explicit type reuse. +- Support for `Apollo Federation`. ## Installation diff --git a/setup.py b/setup.py index 00c6990f8..140b121fd 100755 --- a/setup.py +++ b/setup.py @@ -26,7 +26,7 @@ long_description=README, long_description_content_type="text/markdown", license="BSD", - version="0.9.0", + version="0.10.0", url="https://github.com/mirumee/ariadne", packages=["ariadne"], include_package_data=True,