Skip to content

Commit

Permalink
chore(setup): bump package version and update changelogs
Browse files Browse the repository at this point in the history
  • Loading branch information
Maximilien-R committed Dec 8, 2020
1 parent 2b544b1 commit 0bea41e
Show file tree
Hide file tree
Showing 3 changed files with 30 additions and 1 deletion.
2 changes: 2 additions & 0 deletions CHANGELOG.md
Expand Up @@ -12,6 +12,8 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
## [Released]

- [1.x.x]
- [1.3.x]
- [1.3.0](./changelogs/1.3.0.md) - 2020-12-08
- [1.2.x]
- [1.2.1](./changelogs/1.2.1.md) - 2020-05-06
- [1.2.0](./changelogs/1.2.0.md) - 2020-04-30
Expand Down
27 changes: 27 additions & 0 deletions changelogs/1.3.0.md
@@ -0,0 +1,27 @@
# [1.3.0] - 2020-12-08

## Added

- Setup a `CodeQL` analysis Github Action
- [ISSUE-457](https://github.com/dailymotion/tartiflette/issues/457) - Add a `coerce_list_concurrently` parameter to `create_engine`, `Engine.__init__` & `Engine.cook` to control whether or not output list should be coerced concurrently
- [ISSUE-457](https://github.com/dailymotion/tartiflette/issues/457) - Add a `concurrently` parameter to both `@Resolver` & `@Subscription` in order to control whether or not the output list of the decorated field should be coerced concurrently

## Fixed

- Fix link issue on `1.2.0` changelog (thanks [@mkniewallner](https://github.com/mkniewallner))
- Fix year reference for `1.2.0` changelog (thanks [@garyd203](https://github.com/garyd203))
- Improve documentation (thanks [@dkbarn](https://github.com/dkbarn))
- Fix `README.md` typo (thanks [@mazzi](https://github.com/mazzi))
- Add clarification on the breaking change on output list coercion introduced with the `1.2.0` version (thanks [@garyd203](https://github.com/garyd203))
- [ISSUE-457](https://github.com/dailymotion/tartiflette/issues/457) - Output list are now coerced concurrently by default (breaking the change made on `1.2.0`)

## Changed

- Upgrade `black` from `19.10b0` to `20.8b1`
- Upgrade `isort` from `4.3.21` to `5.6.4`
- Upgrade `lark-parser` from `0.8.5` to `0.11.1`
- Upgrade `pylint` from `2.5.2` to `2.6.0`
- Upgrade `pytest-asyncio` from `0.12.0` to `0.14.0`
- Upgrade `pytest-cov` from `2.8.1` to `2.10.1`
- Upgrade `pytest-xdist` from `1.32.0` to `2.1.0`
- Upgrade `pytest` from `5.4.1` to `6.1.2`
2 changes: 1 addition & 1 deletion setup.py
Expand Up @@ -60,7 +60,7 @@ def run(self):

_BENCHMARK_REQUIRE = ["pytest-benchmark==3.2.3"]

_VERSION = "1.2.1"
_VERSION = "1.3.0"

_PACKAGES = find_packages(exclude=["tests*"])

Expand Down

0 comments on commit 0bea41e

Please sign in to comment.