diff --git a/docs/changelog.rst b/docs/changelog.rst index ecccfb4..8733e7c 100644 --- a/docs/changelog.rst +++ b/docs/changelog.rst @@ -2,6 +2,24 @@ Changelog =========== +.. _v3_26_1: + +3.26.1 (2022-05-02) +------------------- + +- Now depends on `click-default-group-wheel `__, a pure Python wheel package. This means you can install and use this package with `Pyodide `__, which can run Python entirely in your broswer using WebAssembly. (`#429 `__) + + Try that out using the `Pyodide REPL `__: + + .. code-block:: python + + >>> import micropip + >>> await micropip.install("sqlite-utils") + >>> import sqlite_utils + >>> db = sqlite_utils.Database(memory=True) + >>> list(db.query("select 3 * 5")) + [{'3 * 5': 15}] + .. _v3_26: 3.26 (2022-04-13) @@ -49,7 +67,7 @@ 3.23 (2022-02-03) ----------------- -This release introduces four new utility methods for working with `SpatiaLite `__. Thanks, Chris Amico. (`#330 `__) +This release introduces four new utility methods for working with `SpatiaLite `__. Thanks, Chris Amico. (`#385 `__) - ``sqlite_utils.utils.find_spatialite()`` :ref:`finds the location of the SpatiaLite module ` on disk. - ``db.init_spatialite()`` :ref:`initializes SpatiaLite ` for the given database. diff --git a/setup.py b/setup.py index 218cc49..8c5ed1b 100644 --- a/setup.py +++ b/setup.py @@ -2,7 +2,7 @@ from setuptools import setup, find_packages import io import os -VERSION = "3.26" +VERSION = "3.26.1" def get_long_description():