Skip to content

Commit 020b9d5

Browse files
fix: Renamed crash_report.log to .crash_report.log.
1 parent 11ba948 commit 020b9d5

4 files changed

Lines changed: 9 additions & 6 deletions

File tree

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.8.0b1
10+
11+
+ Renamed `crash_report.log` to `.crash_report.log`.
12+
913
### 2.8.0b0
1014

1115
+ Changed the adding level error handling method to "ignore".

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -61,9 +61,9 @@ pip install git+https://github.com/MPCodeWriter21/log21
6161
Changes
6262
-------
6363

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

66-
+ Changed the adding level error handling method to "ignore".
66+
+ Renamed `crash_report.log` to `.crash_report.log`.
6767

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

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.0b0"
29+
version = "2.8.0b1"
3030

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

src/log21/__init__.py

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
# log21.__init__.py
22
# CodeWriter21
33

4-
import io as _io
54
import os as _os
65
import logging as _logging
76
from typing import (Type as _Type, Tuple as _Tuple, Union as _Union,
@@ -24,7 +23,7 @@
2423
from log21.LoggingWindow import LoggingWindow, LoggingWindowHandler
2524
from log21.StreamHandler import StreamHandler, ColorizingStreamHandler
2625

27-
__version__ = "2.8.0b0"
26+
__version__ = "2.8.0b1"
2827
__author__ = "CodeWriter21 (Mehrad Pooryoussof)"
2928
__github__ = "Https://GitHub.com/MPCodeWriter21/log21"
3029
__all__ = [
@@ -630,4 +629,4 @@ def progress_bar(
630629

631630
console_reporter = CrashReporter.ConsoleReporter()
632631

633-
file_reporter = CrashReporter.FileReporter(file='crash_report.log')
632+
file_reporter = CrashReporter.FileReporter(file='.crash_report.log')

0 commit comments

Comments
 (0)