Skip to content

Commit 9f4b9ad

Browse files
fix: Fixed a bug in the TreePrint class.
1 parent 2fc8af4 commit 9f4b9ad

20 files changed

Lines changed: 281 additions & 104 deletions

.gitignore

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -127,3 +127,7 @@ dmypy.json
127127

128128
# Pyre type checker
129129
.pyre/
130+
131+
# IDEs
132+
.idea/
133+
.vscode/

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,10 @@ Help this project by [Donation](DONATE.md)
66
Changes
77
-----------
88

9+
### 2.5.5
10+
11+
Fixed a bug in the `TreePrint` class.
12+
913
### 2.5.4
1014

1115
Added constant colors directly to the Colors module. Now you can do this:

README.md

Lines changed: 2 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -53,15 +53,9 @@ python setup.py install
5353
Changes
5454
-------
5555

56-
### 2.5.4
56+
### 2.5.5
5757

58-
Added constant colors directly to the Colors module. Now you can do this:
59-
```python
60-
from log21 import print
61-
from log21.colors import GREEN, WHITE, RED
62-
63-
print(GREEN + 'This' + WHITE + ' is' + RED + ' Red')
64-
```
58+
Fixed a bug in the `TreePrint` class.
6559

6660
[Full CHANGELOG](https://github.com/MPCodeWriter21/log21/blob/master/CHANGELOG.md)
6761

pyproject.toml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,10 @@ classifiers = [
2525
dependencies = [
2626
"webcolors"
2727
]
28-
version = "2.5.4"
28+
version = "2.5.5"
29+
30+
[tool.setuptools.packages.find]
31+
where = ["src"]
2932

3033
[project.urls]
3134
Homepage = "https://github.com/MPCodeWriter21/log21"
File renamed without changes.
File renamed without changes.

0 commit comments

Comments
 (0)