From cb0eadd7770afe4f843f42792e827c46c4eb7489 Mon Sep 17 00:00:00 2001 From: Peijun Ma Date: Mon, 18 Apr 2022 11:31:50 -0400 Subject: [PATCH] [release] 2.1.0 --- .bumpversion.cfg | 2 +- option/__init__.py | 2 +- pyproject.toml | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.bumpversion.cfg b/.bumpversion.cfg index 9354c99..8edc1d4 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 2.0.1 +current_version = 2.1.0 [bumpversion:file:option/__init__.py] diff --git a/option/__init__.py b/option/__init__.py index b0017c6..3f8dbeb 100644 --- a/option/__init__.py +++ b/option/__init__.py @@ -30,5 +30,5 @@ from .option_ import NONE, Option, Some, maybe from .result import Err, Ok, Result -__version__ = '2.0.1' +__version__ = '2.1.0' __all__ = ['NONE', 'Option', 'Some', 'maybe', 'Result', 'Ok', 'Err', '__version__'] diff --git a/pyproject.toml b/pyproject.toml index 0c4fb00..4db1d13 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "poetry.core.masonry.api" [tool.poetry] name = "option" -version = "2.0.1" +version = "2.1.0" description = "Rust like Option and Result types in Python" authors = ["Peijun Ma "] readme = "README.md"