Skip to content

Commit

Permalink
bump version 1.0.1-rc -> 1.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
jvmncs committed Sep 21, 2022
1 parent e999bf7 commit 7e311dd
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
@@ -1,7 +1,7 @@
from pycape.cape import Cape
from pycape.function_ref import FunctionRef

__version__ = "1.0.1-rc"
__version__ = "1.1.0"

__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*"]
name = "pycape"
description = "The Cape Privacy Python SDK"
readme = "README.md"
version = "1.0.1-rc"
version = "1.1.0"
requires-python = ">=3.7"
dependencies = [
"cbor2",
Expand All @@ -36,7 +36,7 @@ classifiers = [
urls = {repository = "https://github.com/capeprivacy/pycape"}

[tool.bumpver]
current_version = "1.0.1-rc"
current_version = "1.1.0"
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 = "1.0.1-rc"
version = "1.1.0"
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__ = "1.0.1-rc"
__version__ = "1.1.0"
__all__ = [
"lift_io",
"bundle_serde_hooks",
Expand Down

0 comments on commit 7e311dd

Please sign in to comment.