python-ntfy 0.4.0__tar.gz → 0.4.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.1
2
2
  Name: python-ntfy
3
- Version: 0.4.0
3
+ Version: 0.4.1
4
4
  Summary: An ntfy library aiming for feature completeness
5
5
  Home-page: https://github.com/MatthewCane/python-ntfy
6
6
  License: MIT
@@ -46,7 +46,9 @@ client = NtfyClient(topic="Your topic")
46
46
  client.send("Your message here")
47
47
  ```
48
48
 
49
- See the full documentation site at [https://matthewcane.github.io/python-ntfy/](https://matthewcane.github.io/python-ntfy/).
49
+ ## Documentation
50
+
51
+ See the full documentation at [https://matthewcane.github.io/python-ntfy/](https://matthewcane.github.io/python-ntfy/).
50
52
 
51
53
  ## Supported Features
52
54
 
@@ -26,7 +26,9 @@ client = NtfyClient(topic="Your topic")
26
26
  client.send("Your message here")
27
27
  ```
28
28
 
29
- See the full documentation site at [https://matthewcane.github.io/python-ntfy/](https://matthewcane.github.io/python-ntfy/).
29
+ ## Documentation
30
+
31
+ See the full documentation at [https://matthewcane.github.io/python-ntfy/](https://matthewcane.github.io/python-ntfy/).
30
32
 
31
33
  ## Supported Features
32
34
 
@@ -1,6 +1,6 @@
1
1
  [tool.poetry]
2
2
  name = "python-ntfy"
3
- version = "0.4.0"
3
+ version = "0.4.1"
4
4
  description = "An ntfy library aiming for feature completeness"
5
5
  authors = ["Matthew Cane <matthew.cane0@gmail.com>"]
6
6
  readme = "README.md"
@@ -69,6 +69,7 @@ ignore = [
69
69
  "ANN001", # Missing type annotation for function argument
70
70
  "ANN101", # Missing type annotation for self in method
71
71
  "S101", # Use of assert detected
72
+ "TRY003", # Use of vanilla exception messages
72
73
  ]
73
74
 
74
75
 
File without changes