Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Release 0.11.0 #160

Merged
merged 4 commits into from Sep 3, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
11 changes: 11 additions & 0 deletions CHANGELOG.md
Expand Up @@ -5,6 +5,17 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## 0.11.0 - 2021-09-03

### Added

- Add official compatibility with Tartiflette 1.4.x. (Pull #153)

### Changed

- Update dependency on Starlette to `0.16.*`. (Pull #154)
- Update httpx requirement to `0.19.*` (Pull #159)

## 0.10.0 - 2021-01-19

### Added
Expand Down
2 changes: 1 addition & 1 deletion src/tartiflette_asgi/__init__.py
@@ -1,5 +1,5 @@
from ._app import TartifletteApp
from ._datastructures import GraphiQL, Subscriptions

__version__ = "0.10.0"
__version__ = "0.11.0"
__all__ = ["GraphiQL", "Subscriptions", "TartifletteApp"]