From 7f5fd21551edbc623de9773a3f803f050222b654 Mon Sep 17 00:00:00 2001 From: Massimo Di Pierro Date: Mon, 11 Nov 2024 23:57:00 -0800 Subject: [PATCH] version 20241111.2 --- README.md | 1 + pydal/__init__.py | 2 +- pyproject.toml | 2 +- 3 files changed, 3 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index f3c801a3b..32ede4c71 100644 --- a/README.md +++ b/README.md @@ -67,6 +67,7 @@ pyDAL supports the following databases: * SAPDB * IMAP * MongoDB +* Google Firestore ## License diff --git a/pydal/__init__.py b/pydal/__init__.py index 4a88e7d3b..7e49860d1 100644 --- a/pydal/__init__.py +++ b/pydal/__init__.py @@ -1,4 +1,4 @@ -__version__ = "20241111.1" +__version__ = "20241111.2" from .base import DAL from .helpers.classes import SQLCustomType diff --git a/pyproject.toml b/pyproject.toml index e34638521..6bfa00684 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "pydal" -version = "20241111.1" +version = "20241111.2" authors = [{ name="Massimo Di Pierro", email="massimo.dipierro@gmail.com" },] description = 'pyDAL is a Database Abstraction Layer. It generates queries for SQlite, PotsgreSQL, MySQL, and other backends. It was originally part of the web2py frameworks but it is now an independent project. Example: db.define_table("thing",Field("name")) and db.thing.insert(name="Pizza")' readme = "README.md"