Skip to content

Commit

Permalink
Merge branch 'release/0.10.0'
Browse files Browse the repository at this point in the history
  • Loading branch information
ri-gilfanov committed Jun 9, 2021
2 parents 7fe6dc2 + 55f90a9 commit f021eea
Show file tree
Hide file tree
Showing 7 changed files with 102 additions and 8 deletions.
3 changes: 1 addition & 2 deletions .readthedocs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,5 +18,4 @@ formats: all

# Optionally set the version of Python and requirements required to build your docs
python:
version: 3.8

version: 3.7
2 changes: 2 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
language: python
python:
- 3.7
- 3.8
- 3.9
before_install:
- pip install poetry
install:
Expand Down
2 changes: 1 addition & 1 deletion aiohttp_sqlalchemy/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
TSABinding = Tuple[TSessionFactory, str, bool]


__version__ = '0.9.3'
__version__ = '0.10.0'

__all__ = ['DuplicateAppKeyError', 'DuplicateRequestKeyError',
'SAAbstractView', 'SABaseView', 'sa_bind', 'sa_decorator',
Expand Down
2 changes: 1 addition & 1 deletion docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
author = 'Ruslan Ilyasovich Gilfanov'

# The full version, including alpha/beta/rc tags
release = '0.9.3'
release = '0.10.0'


# -- General configuration ---------------------------------------------------
Expand Down
6 changes: 6 additions & 0 deletions docs/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -202,6 +202,12 @@ Nested apps
Change log
----------
Version 0.10
^^^^^^^^^^^^
Added
"""""
* Added support Python 3.7.

Version 0.9
^^^^^^^^^^^
Added
Expand Down
90 changes: 88 additions & 2 deletions poetry.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

5 changes: 3 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "aiohttp-sqlalchemy"
version = "0.9.3"
version = "0.10.0"
description = "SQLAlchemy 1.4 / 2.0 support for aiohttp."
authors = [
"Ruslan Ilyasovich Gilfanov <ri.gilfanov@yandex.ru>",
Expand All @@ -9,6 +9,7 @@ classifiers = [
"Development Status :: 5 - Production/Stable",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
Expand All @@ -29,7 +30,7 @@ exclude_lines = [
]

[tool.poetry.dependencies]
python = "^3.8"
python = "^3.7"
aiohttp = "^3.7.4.post0"
SQLAlchemy = "^1.4.17"

Expand Down

0 comments on commit f021eea

Please sign in to comment.