Skip to content

Commit c32d67f

Browse files
committed
chore(version): Bump version 1.4.1 → 1.4.2
1 parent dce1dfd commit c32d67f

File tree

10 files changed

+10
-10
lines changed

10 files changed

+10
-10
lines changed

.bumpversion.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[tool.bumpversion]
2-
current_version = "1.4.1"
2+
current_version = "1.4.2"
33
parse = "(?P<major>\\d+)\\.(?P<minor>\\d+)\\.(?P<patch>\\d+)"
44
serialize = ["{major}.{minor}.{patch}"]
55
search = "{current_version}"

VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
1.4.1
1+
1.4.2

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[project]
22
name = "robotpuzzle"
3-
version = "1.4.1"
3+
version = "1.4.2"
44
description = "Solve Exploding Robot Puzzle"
55
readme = "README.md"
66
authors = [

src/robotpuzzle/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
"""RobotPuzzle Init"""
22

33
__date__ = '2024-12-10'
4-
__version__ = "1.4.1"
4+
__version__ = "1.4.2"
55

66
from rich import inspect
77
from robotpuzzle import circles

src/robotpuzzle/buffer.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
__author__ = "Matt Martini"
44
__email__ = "[email protected]"
5-
__version__ = "1.4.1"
5+
__version__ = "1.4.2"
66

77
from rich.panel import Panel
88
from robotpuzzle import log

src/robotpuzzle/circles.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
__author__ = "Matt Martini"
44
__email__ = "[email protected]"
5-
__version__ = "1.4.1"
5+
__version__ = "1.4.2"
66

77
from rich.columns import Columns
88
from robotpuzzle.node import Node

src/robotpuzzle/console.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
__author__ = "Matt Martini"
44
__email__ = "[email protected]"
5-
__version__ = "1.4.1"
5+
__version__ = "1.4.2"
66

77
from rich.console import Console
88
from rich.theme import Theme

src/robotpuzzle/log.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
__author__ = "Matt Martini"
44
__email__ = "[email protected]"
5-
__version__ = "1.4.1"
5+
__version__ = "1.4.2"
66

77
import json
88
import logging

src/robotpuzzle/node.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
__author__ = "Matt Martini"
44
__email__ = "[email protected]"
5-
__version__ = "1.4.1"
5+
__version__ = "1.4.2"
66

77
from rich.panel import Panel
88
from robotpuzzle import log

tests/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
"""Test Init"""
22

33
__date__ = '2024-12-10'
4-
__version__ = "1.4.1"
4+
__version__ = "1.4.2"

0 commit comments

Comments
 (0)