From 2f12a7950227c1301daa34f799fac1851603256f Mon Sep 17 00:00:00 2001 From: Philipp Kessling Date: Tue, 21 Jan 2025 17:39:47 +0100 Subject: [PATCH] bump version to 0.4.0-alpha10 --- dabapush/__init__.py | 4 ++-- pyproject.toml | 2 +- tests/test_package.py | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/dabapush/__init__.py b/dabapush/__init__.py index b9ad85a..0f9f76f 100644 --- a/dabapush/__init__.py +++ b/dabapush/__init__.py @@ -3,7 +3,7 @@ Database pusher and version control for social media data – early-alpha version -Version: 0.4.0-alpha8, date: 2024/12/05 +Version: 0.4.0-alpha10, date: 2025/01/21 ![PyPI - Downloads](https://img.shields.io/pypi/dm/dabapush) @@ -163,7 +163,7 @@ """ -__version__ = "0.4.0-alpha8" +__version__ = "0.4.0-alpha10" from .Reader import ( NDJSONReaderConfiguration, diff --git a/pyproject.toml b/pyproject.toml index fd84382..8976b88 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "dabapush" -version = "0.4.0-alpha8" +version = "0.4.0-alpha10" description = "" authors = [ "Philipp Kessling ", diff --git a/tests/test_package.py b/tests/test_package.py index 15e79fb..3d19040 100644 --- a/tests/test_package.py +++ b/tests/test_package.py @@ -5,7 +5,7 @@ def test_version(): """Should be the current version number.""" - assert __version__ == "0.4.0-alpha8" + assert __version__ == "0.4.0-alpha10" def test_version_type():