Skip to content

Commit c607181

Browse files
committed
Bump version: 1.1.0 → 1.2.0
1 parent 0335770 commit c607181

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 = 1.1.0
5+
current_version = 1.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 = "1.1.0" # DO NOT EDIT THIS LINE MANUALLY. LET bump2version UTILITY DO IT
7+
version = "1.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 = "hukkin@users.noreply.github.com" },

tomli/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
"""A lil' TOML parser."""
22

33
__all__ = ("loads", "load", "TOMLDecodeError")
4-
__version__ = "1.1.0" # DO NOT EDIT THIS LINE MANUALLY. LET bump2version UTILITY DO IT
4+
__version__ = "1.2.0" # DO NOT EDIT THIS LINE MANUALLY. LET bump2version UTILITY DO IT
55

66
from tomli._parser import TOMLDecodeError, load, loads

0 commit comments

Comments
 (0)