Skip to content

Commit 7dcec1b

Browse files
committed
bump version to 0.1.2
1 parent f421524 commit 7dcec1b

2 files changed

Lines changed: 4 additions & 4 deletions

File tree

pyproject.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ build-backend = "hatchling.build"
44

55
[project]
66
name = "pycodify"
7-
version = "0.1.1"
7+
version = "0.1.2"
88
description = "Python source code as a serialization format with automatic import resolution"
99
authors = [{name = "Tristan Simas", email = "tristan.simas@mail.mcgill.ca"}]
1010
license = {text = "MIT"}
@@ -62,11 +62,11 @@ target-version = ["py310", "py311", "py312", "py313"]
6262

6363
[tool.ruff]
6464
line-length = 100
65-
target-version = "py310"
65+
target-version = "0.1.2"
6666
select = ["E", "F", "I", "N", "W", "UP"]
6767

6868
[tool.mypy]
69-
python_version = "3.10"
69+
python_version = "0.1.2"
7070
warn_return_any = true
7171
warn_unused_configs = true
7272
disallow_untyped_defs = true

src/pycodify/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
# Register default formatters
1515
from . import formatters as _formatters # noqa: F401
1616

17-
__version__ = "0.1.1"
17+
__version__ = "0.1.2"
1818

1919
__all__ = [
2020
"Assignment",

0 commit comments

Comments
 (0)