Skip to content

Commit

Permalink
Merge pull request #545 from tartiflette/bubu/prepare-1.4.1_release
Browse files Browse the repository at this point in the history
Prepare 1.4.1 release
  • Loading branch information
abusi committed Nov 15, 2021
2 parents c9fc4cb + ab91e60 commit e292c28
Show file tree
Hide file tree
Showing 7 changed files with 31 additions and 13 deletions.
6 changes: 5 additions & 1 deletion .pylintrc
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,11 @@ disable=missing-docstring,
useless-return,
docstring-first-line-empty,
missing-raises-doc,
raise-missing-from
raise-missing-from,
consider-using-f-string,
no-self-use,
missing-param-doc,
redundant-returns-doc


[REPORTS]
Expand Down
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@ and this project adheres to [Semantic Versioning](http:https://semver.org/spec/v2.0.0.

- [1.x.x]
- [1.4.x]
- [1.4.1](./changelogs/1.4.1.md) - 2021-11-15
- [1.4.0](./changelogs/1.4.0.md) - 2021-08-02
- [1.3.x]
- [1.3.3](./changelogs/1.3.3.md) - 2021-04-09
Expand Down
3 changes: 2 additions & 1 deletion CONTRIBUTORS.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ Maintainers and Contributors
Maintainers
-----------

* [Aurélien BUSI](mailto:aurelien.busi@dailymotion.com) - [@abusi](https://github.com/abusi)
* [Aurélien BUSI](mailto:aurelien.busi@gmail.com) - [@abusi](https://github.com/abusi)
* [Klemen SEVER](mailto:[email protected]) - [@achedeuzot](https://github.com/achedeuzot)
* [Stanislas CHOLLET](mailto:[email protected]) - [@tsunammis](https://github.com/tsunammis)
* [Maximilien RAULIC](mailto:[email protected]) - [@Maximilien-R](https://github.com/Maximilien-R)
Expand All @@ -22,3 +22,4 @@ Contributors
* [@mkniewallner](https://github.com/mkniewallner)
* [@tbekolay](https://github.com/tbekolay)
* [@ultrabug](https://github.com/ultrabug)
* [@yezz123](https://github.com/yezz123)
13 changes: 13 additions & 0 deletions changelogs/1.4.1.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
# [1.4.1] - 2021-11-15

## Added

- [PR-525](https://github.com/tartiflette/tartiflette/pull/525) - Python 3.10 is now officially supported
- [PR-522](https://github.com/tartiflette/tartiflette/pull/522) - Add an optional `sdl_file_encoding` argument to `Engine` class, to specify the encoding of SDL files
- [PR-526](https://github.com/tartiflette/tartiflette/pull/526) - Add an optional `sdl_file_encoding` argument to `create_engine` method, to specify the encoding of SDL files


## Changed

- [PR-529](https://github.com/tartiflette/tartiflette/pull/529) - Remove unused `pytz` dependency
- [PR-542](https://github.com/tartiflette/tartiflette/pull/542) - Refactor Code Expression, thanks [Yasser Tahiri](https://github.com/yezz123)
7 changes: 3 additions & 4 deletions changelogs/next.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@

## Added

- [PR-525](https://github.com/tartiflette/tartiflette/pull/525) - Python 3.10 is now officially supported
- [PR-529](https://github.com/tartiflette/tartiflette/pull/529) - Remove unused `pytz` dependency
- [PR-522](https://github.com/tartiflette/tartiflette/pull/522) - Add an optional `sdl_file_encoding` argument to `Engine` class, to specify the encoding of SDL files
- [PR-526](https://github.com/tartiflette/tartiflette/pull/526) - Add an optional `sdl_file_encoding` argument to `create_engine` method, to specify the encoding of SDL files
## Changed

## Fixed
12 changes: 6 additions & 6 deletions setup.cfg
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[metadata]
name = tartiflette
version = 1.4.0
version = 1.4.1
description = GraphQL Engine for Python
long_description = file: README.md
long_description_content_type = text/markdown
Expand Down Expand Up @@ -44,12 +44,12 @@ include_package_data = True
[options.extras_require]
test =
pytest==6.2.5
pytest-cov==2.12.1
pytest-asyncio==0.15.1
pytest-xdist==2.3.0
pylint==2.10.2
pytest-cov==3.0.0
pytest-asyncio==0.16.0
pytest-xdist==2.4.0
pylint==2.11.1
black==21.8b0
isort==5.9.3
isort==5.10.1
benchmark = pytest-benchmark==3.4.1

[options.packages.find]
Expand Down
2 changes: 1 addition & 1 deletion tartiflette/utils/directives.py
Original file line number Diff line number Diff line change
Expand Up @@ -164,7 +164,7 @@ async def directive_executor(
argument coercion process
:param wrapped_func: the inner callable to call after the directive
:type directive_func: Callable
:type directive_args: Callable
:type directive_arguments_coercer: Callable
:type wrapped_func: Callable
:type context_coercer: Optional[Any]
:return: the computed value
Expand Down

0 comments on commit e292c28

Please sign in to comment.