Skip to content

Commit

Permalink
bump version 3.1.1 -> 3.1.2-rc
Browse files Browse the repository at this point in the history
  • Loading branch information
yanndupis committed Mar 30, 2023
1 parent c20ce84 commit 23333d0
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion pycape/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
from pycape.function_ref import FunctionRef
from pycape.token import Token

__version__ = "3.1.1"
__version__ = "3.1.2-rc"

__all__ = [
"Cape",
Expand Down
4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ exclude = ["serdio*", "cape_encrypt*"]
name = "pycape"
description = "The Cape Privacy Python SDK"
readme = "README.md"
version = "3.1.1"
version = "3.1.2-rc"
requires-python = ">=3.7"
dependencies = [
"cbor2",
Expand All @@ -36,7 +36,7 @@ classifiers = [
urls = {repository = "https://github.com/capeprivacy/pycape"}

[tool.bumpver]
current_version = "3.1.1"
current_version = "3.1.2-rc"
version_pattern = "MAJOR.MINOR.PATCH[-TAG]"
commit_message = "bump version {old_version} -> {new_version}"
commit = true
Expand Down
2 changes: 1 addition & 1 deletion serdio/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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.1.1"
version = "3.1.2-rc"
requires-python = ">=3.7"
dependencies = ["msgpack"]
authors = [
Expand Down
2 changes: 1 addition & 1 deletion serdio/serdio/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -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.1.1"
__version__ = "3.1.2-rc"
__all__ = [
"lift_io",
"bundle_serde_hooks",
Expand Down

0 comments on commit 23333d0

Please sign in to comment.