Skip to content

Commit

Permalink
Version 0.9.0
Browse files Browse the repository at this point in the history
  • Loading branch information
amol- committed Dec 11, 2022
1 parent c8cb9bb commit 544c8fa
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 2 deletions.
7 changes: 7 additions & 0 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -97,6 +97,13 @@ Or you can use depot with SQLAlchemy to store attachments::
ChangeLog
---------

0.9.0
~~~~~

- Support for SQLAlchemy 1.4 and 2.0
- Support for SQLAlchemy objects deleted with ``.delete(synchronize_session="fetch")``
- Tests migrated to ``unittest``

0.8.0
~~~~~

Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
from setuptools import setup, find_packages
import os, sys

version = '0.8.0'
version = '0.9.0'

here = os.path.abspath(os.path.dirname(__file__))
try:
Expand Down
7 changes: 6 additions & 1 deletion tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,10 @@ envlist =
py35
py36
py37
py38
py39
py310
py311

[testenv]
deps =
Expand All @@ -24,7 +28,8 @@ passenv =
AWS_SECRET_ACCESS_KEY
commands =
pip install -e .[testing]
nosetests --with-coverage --cover-package=depot --cover-erase --with-flaky --force-flaky
coverage run --source depot -m unittest discover -v
coverage report

[testenv:docs]
changedir = {toxinidir}/docs
Expand Down

0 comments on commit 544c8fa

Please sign in to comment.