Skip to content

Commit

Permalink
Merge pull request #116 from stckme/Release-0.97.0
Browse files Browse the repository at this point in the history
Release 0.97.0
  • Loading branch information
gauravr authored Feb 18, 2025
2 parents cf3f07c + 7e3e115 commit 79900ca
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 4 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,12 @@
History
=======

0.97.0 (2025-02-18)
-------------------
* Added async cached models.
* Added async session handling for FastAPI.
* Added skip_dbtransaction option for endpoints.

0.96.4 (2025-01-10)
-------------------
* Fixed peewee dbtransaction pool for fastapi.
Expand Down
2 changes: 1 addition & 1 deletion apphelpers/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,4 @@

__author__ = """Scroll Tech"""
__email__ = "[email protected]"
__version__ = "0.96.4"
__version__ = "0.97.0"
1 change: 0 additions & 1 deletion apphelpers/async_sessions.py
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,6 @@ async def uid2sid(self, uid, site_ctx=None):

async def uid2bound_sids(self, uid):
keys = await self.rconn.keys(rev_lookup_key(uid, "*"))
print(keys)
return [(await self.rconn.get(key)).decode() for key in keys]

async def uid2bound_site_ids(self, uid):
Expand Down
2 changes: 1 addition & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[bumpversion]
current_version = 0.96.4
current_version = 0.97.0
commit = True
tag = True

Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,6 @@
test_suite="tests",
tests_require=test_requirements,
url="https://github.com/scrolltech/apphelpers",
version="0.96.4",
version="0.97.0",
zip_safe=False,
)

0 comments on commit 79900ca

Please sign in to comment.