From 5d045a2bc2caca044da24d8dbd313d6bcaaafe4f Mon Sep 17 00:00:00 2001 From: Philipp Kessling Date: Mon, 2 Dec 2024 16:23:57 +0100 Subject: [PATCH] Bump version to 0.4.0-alpha4 --- 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 e1c29cf..7ca2ba9 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-alpha3, date: 2023/03/19 +Version: 0.4.0-alpha4, date: 2023/03/19 ![PyPI - Downloads](https://img.shields.io/pypi/dm/dabapush) @@ -163,7 +163,7 @@ """ -__version__ = "0.4.0-alpha3" +__version__ = "0.4.0-alpha4" from .Reader import ( NDJSONReaderConfiguration, diff --git a/pyproject.toml b/pyproject.toml index 338a5db..389e8a6 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "dabapush" -version = "0.4.0-alpha3" +version = "0.4.0-alpha4" description = "" authors = [ "Philipp Kessling ", diff --git a/tests/test_package.py b/tests/test_package.py index 71a5d38..06d3261 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-alpha3" + assert __version__ == "0.4.0-alpha4" def test_version_type():