Skip to content

Commit 1a1cd4a

Browse files
Version 2.8.0:
+ Update python version + Updated license agreement + Renamed `crash_report.log` to `.crash_report.log`. + Added "force" error handling method to `Logger.add_level`. + Changed the adding level error handling method to "ignore". + Ability to add new methods to the Logger object for each custom level.
1 parent 020b9d5 commit 1a1cd4a

5 files changed

Lines changed: 17 additions & 5 deletions

File tree

CHANGELOG.md

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

9+
### 2.8.0
10+
11+
+ Update python version
12+
+ Renamed `crash_report.log` to `.crash_report.log`.
13+
+ Added "force" error handling method to `Logger.add_level`.
14+
+ Changed the adding level error handling method to "ignore".
15+
+ Ability to add new methods to the Logger object for each custom level.
16+
917
### 2.8.0b1
1018

1119
+ Renamed `crash_report.log` to `.crash_report.log`.

LICENSE.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -186,7 +186,7 @@
186186
same "printed page" as the copyright notice for easier
187187
identification within third-party archives.
188188

189-
Copyright [2021-2023] [CodeWriter21]
189+
Copyright [2021-2024] [CodeWriter21]
190190

191191
Licensed under the Apache License, Version 2.0 (the "License");
192192
you may not use this file except in compliance with the License.

README.md

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ Features
1818
modifications. It can also decolorize the output if you want to log into a file.
1919
+ Pretty printing : Have you ever wanted to colorize the output of the pprint module? log21's pretty printer can do
2020
that.
21-
+ Tree printing : You can pass a dict or list to log21.tree_print function and it will print it in a tree-like
21+
+ Tree printing : You can pass a dict or list to `log21.tree_print` function and it will print it in a tree-like
2222
structure. It's also colorized XD.
2323
+ ProgressBar : log21's progress bar can be used to show progress of a process in a beautiful way.
2424
+ LoggingWindow : Helps you to log messages and debug your code in a window other than the console.
@@ -61,9 +61,13 @@ pip install git+https://github.com/MPCodeWriter21/log21
6161
Changes
6262
-------
6363

64-
### 2.8.0b1
64+
### 2.8.0
6565

66+
+ Update python version
6667
+ Renamed `crash_report.log` to `.crash_report.log`.
68+
+ Added "force" error handling method to `Logger.add_level`.
69+
+ Changed the adding level error handling method to "ignore".
70+
+ Ability to add new methods to the Logger object for each custom level.
6771

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

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ dependencies = [
2626
"webcolors",
2727
"docstring-parser"
2828
]
29-
version = "2.8.0b1"
29+
version = "2.8.0"
3030

3131
[tool.setuptools.packages.find]
3232
where = ["src"]

src/log21/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
from log21.LoggingWindow import LoggingWindow, LoggingWindowHandler
2424
from log21.StreamHandler import StreamHandler, ColorizingStreamHandler
2525

26-
__version__ = "2.8.0b1"
26+
__version__ = "2.8.0"
2727
__author__ = "CodeWriter21 (Mehrad Pooryoussof)"
2828
__github__ = "Https://GitHub.com/MPCodeWriter21/log21"
2929
__all__ = [

0 commit comments

Comments
 (0)