Skip to content

Commit

Permalink
chore: bump version
Browse files Browse the repository at this point in the history
  • Loading branch information
Skelmis committed Oct 12, 2024
1 parent 15a3937 commit 7405330
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 4 deletions.
4 changes: 2 additions & 2 deletions alaric/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
"util",
"CachedDocument",
)
__version__ = "1.4.0"
__version__ = "1.5.0"
VersionInfo = namedtuple("VersionInfo", "major minor micro releaselevel serial")
version_info = VersionInfo(major=1, minor=4, micro=0, releaselevel="final", serial=0)
version_info = VersionInfo(major=1, minor=5, micro=0, releaselevel="final", serial=0)
logging.getLogger(__name__).addHandler(logging.NullHandler())
5 changes: 3 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
[tool.poetry]
name = "alaric"
version = "1.4.0"
version = "1.5.0"
description = "A simplistic yet powerful asynchronous MongoDB query engine."
authors = ["skelmis <[email protected]>"]
license = "MIT"
readme = "readme.md"

[tool.poetry.dependencies]
python = "^3.8"
python = "^3.9"
redis = {extras = ["hiredis"], version = "^5.1.1", optional = true}
dnspython = "^2.7.0"
motor = "^3.6.0"
Expand All @@ -20,6 +20,7 @@ mongomock-motor = "^0.0.13"
pytest-asyncio = "^0.20.1"
fakeredis = "^2.20.0"

black = "^24.10.0"
[project]
classifiers = [
"Programming Language :: Python :: 3",
Expand Down

0 comments on commit 7405330

Please sign in to comment.