From 10e28dfd35e35a22648db1404636db25d3fc5b16 Mon Sep 17 00:00:00 2001 From: jvmncs Date: Fri, 17 Feb 2023 13:16:21 -0500 Subject: [PATCH] bump version 3.0.1-rc -> 3.1.0 --- pycape/__init__.py | 2 +- pyproject.toml | 4 ++-- serdio/pyproject.toml | 2 +- serdio/serdio/__init__.py | 2 +- 4 files changed, 5 insertions(+), 5 deletions(-) diff --git a/pycape/__init__.py b/pycape/__init__.py index 4ec3859..424accf 100644 --- a/pycape/__init__.py +++ b/pycape/__init__.py @@ -2,7 +2,7 @@ from pycape.function_ref import FunctionRef from pycape.token import Token -__version__ = "3.0.1-rc" +__version__ = "3.1.0" __all__ = [ "Cape", diff --git a/pyproject.toml b/pyproject.toml index 224b02a..048b200 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -9,7 +9,7 @@ exclude = ["serdio*", "cape_encrypt*"] name = "pycape" description = "The Cape Privacy Python SDK" readme = "README.md" -version = "3.0.1-rc" +version = "3.1.0" requires-python = ">=3.7" dependencies = [ "cbor2", @@ -36,7 +36,7 @@ classifiers = [ urls = {repository = "https://github.com/capeprivacy/pycape"} [tool.bumpver] -current_version = "3.0.1-rc" +current_version = "3.1.0" version_pattern = "MAJOR.MINOR.PATCH[-TAG]" commit_message = "bump version {old_version} -> {new_version}" commit = true diff --git a/serdio/pyproject.toml b/serdio/pyproject.toml index 32e4e3e..51f9094 100644 --- a/serdio/pyproject.toml +++ b/serdio/pyproject.toml @@ -6,7 +6,7 @@ build-backend = "setuptools.build_meta" name = "serdio" description = "Automatic serialization of function inputs and outputs using MessagePack." readme = "README.md" -version = "3.0.1-rc" +version = "3.1.0" requires-python = ">=3.7" dependencies = ["msgpack"] authors = [ diff --git a/serdio/serdio/__init__.py b/serdio/serdio/__init__.py index dfbb2a5..197216e 100644 --- a/serdio/serdio/__init__.py +++ b/serdio/serdio/__init__.py @@ -35,7 +35,7 @@ def my_cool_function(x: int, y: float, b: float = 1.0) -> float: from serdio.serde import deserialize from serdio.serde import serialize -__version__ = "3.0.1-rc" +__version__ = "3.1.0" __all__ = [ "lift_io", "bundle_serde_hooks",