Skip to content

Commit c48e4e1

Browse files
committed
Bump version: 2.1.0 → 2.2.0
1 parent 7604741 commit c48e4e1

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

.bumpversion.cfg

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
commit = True
33
tag = True
44
tag_name = {new_version}
5-
current_version = 2.1.0
5+
current_version = 2.2.0
66

77
[bumpversion:file:pyproject.toml]
88
search = version = "{current_version}" # DO NOT EDIT THIS LINE MANUALLY. LET bump2version UTILITY DO IT

pyproject.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ build-backend = "flit_core.buildapi"
44

55
[project]
66
name = "tomli"
7-
version = "2.1.0" # DO NOT EDIT THIS LINE MANUALLY. LET bump2version UTILITY DO IT
7+
version = "2.2.0" # DO NOT EDIT THIS LINE MANUALLY. LET bump2version UTILITY DO IT
88
description = "A lil' TOML parser"
99
authors = [
1010
{ name = "Taneli Hukkinen", email = "[email protected]" },

src/tomli/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,6 @@
33
# Licensed to PSF under a Contributor Agreement.
44

55
__all__ = ("loads", "load", "TOMLDecodeError")
6-
__version__ = "2.1.0" # DO NOT EDIT THIS LINE MANUALLY. LET bump2version UTILITY DO IT
6+
__version__ = "2.2.0" # DO NOT EDIT THIS LINE MANUALLY. LET bump2version UTILITY DO IT
77

88
from ._parser import TOMLDecodeError, load, loads

0 commit comments

Comments
 (0)