advdbg 0.2.9__tar.gz → 0.3.1__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: advdbg
3
- Version: 0.2.9
3
+ Version: 0.3.1
4
4
  Summary: Minimalist colorful debug logger
5
5
  Author-email: Darkey <weplayok3@gmail.com>, WinFun <placeholder@gmail.com>
6
6
  License: MIT
@@ -48,11 +48,9 @@ dbgVar.cfg(title='REQUEST')
48
48
  BEFORE: title of your debug
49
49
  AFTER: REQUEST
50
50
 
51
- ## Change Log: v0.2.7
51
+ ## Change Log: v0.3.1
52
52
 
53
- - Added custom exceptions
54
- - Added about() method
55
- - Added checker for updates
53
+ - Hotfix of 0.3.0
56
54
 
57
55
  ## Requirements
58
56
 
@@ -33,11 +33,9 @@ dbgVar.cfg(title='REQUEST')
33
33
  BEFORE: title of your debug
34
34
  AFTER: REQUEST
35
35
 
36
- ## Change Log: v0.2.7
36
+ ## Change Log: v0.3.1
37
37
 
38
- - Added custom exceptions
39
- - Added about() method
40
- - Added checker for updates
38
+ - Hotfix of 0.3.0
41
39
 
42
40
  ## Requirements
43
41
 
@@ -12,6 +12,7 @@ __version__ = '0.2.9'
12
12
 
13
13
  from .core import AdvDBG
14
14
 
15
+ from .colors import Colors
15
16
  from .analyze import Breakpoint
16
17
  import requests
17
18
  from .update import Update
@@ -23,8 +23,6 @@ class Update:
23
23
 
24
24
  def check_for_updates():
25
25
  if Update.return_installed() != Update.return_latest():
26
- return f"Not latest!"
26
+ return "Not latest!"
27
27
 
28
28
  return "Latest"
29
-
30
- print(Update.check_for_updates())
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: advdbg
3
- Version: 0.2.9
3
+ Version: 0.3.1
4
4
  Summary: Minimalist colorful debug logger
5
5
  Author-email: Darkey <weplayok3@gmail.com>, WinFun <placeholder@gmail.com>
6
6
  License: MIT
@@ -48,11 +48,9 @@ dbgVar.cfg(title='REQUEST')
48
48
  BEFORE: title of your debug
49
49
  AFTER: REQUEST
50
50
 
51
- ## Change Log: v0.2.7
51
+ ## Change Log: v0.3.1
52
52
 
53
- - Added custom exceptions
54
- - Added about() method
55
- - Added checker for updates
53
+ - Hotfix of 0.3.0
56
54
 
57
55
  ## Requirements
58
56
 
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
4
4
 
5
5
  [project]
6
6
  name = "advdbg"
7
- version = "0.2.9"
7
+ version = "0.3.1"
8
8
  authors = [
9
9
  {name = "Darkey", email = "weplayok3@gmail.com"}, {name = "WinFun", email = "placeholder@gmail.com"}
10
10
  ]
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes