summaryrefslogtreecommitdiff
path: root/dev-python/loguru/files/0.6.0-typos.patch
blob: ed9fecc91bfd67c1d1731976a00f5ad8fae0723e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
From 8b820c7a138f0b320311c85e8ea6e1c017576000 Mon Sep 17 00:00:00 2001
From: Delgan <4193924+Delgan@users.noreply.github.com>
Date: Sat, 29 Jan 2022 14:50:59 +0100
Subject: [PATCH 1/2] Fix small typo in CHANGELOG.md

---
 CHANGELOG.rst | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/CHANGELOG.rst b/CHANGELOG.rst
index 4c57fad..1d08f9d 100644
--- a/CHANGELOG.rst
+++ b/CHANGELOG.rst
@@ -184,7 +184,7 @@ Initial release.
 
 
 .. _Unreleased: https://github.com/delgan/loguru/compare/0.6.0...master
-.. -0.6.0: https://github.com/delgan/loguru/releases/tag/0.6.0
+.. _0.6.0: https://github.com/delgan/loguru/releases/tag/0.6.0
 .. _0.5.3: https://github.com/delgan/loguru/releases/tag/0.5.3
 .. _0.5.2: https://github.com/delgan/loguru/releases/tag/0.5.2
 .. _0.5.1: https://github.com/delgan/loguru/releases/tag/0.5.1

From ee1ce85a047fc396276e10ae92b72610cbafd57b Mon Sep 17 00:00:00 2001
From: Delgan <4193924+Delgan@users.noreply.github.com>
Date: Sun, 30 Jan 2022 20:28:37 +0100
Subject: [PATCH 2/2] Fix another small typo in CHANGELOG.rst

---
 CHANGELOG.rst | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/CHANGELOG.rst b/CHANGELOG.rst
index 1d08f9d..6e1c182 100644
--- a/CHANGELOG.rst
+++ b/CHANGELOG.rst
@@ -1,7 +1,7 @@
 `0.6.0`_ (2022-01-29)
 =====================
 
-- Remove internal use of ``pickle.loads()`` considered as a security vulnerability referenced as `CVE-2022-0329 https://nvd.nist.gov/vuln/detail/CVE-2022-0329`_ (`#563 <https://github.com/Delgan/loguru/issues/563>`_).
+- Remove internal use of ``pickle.loads()`` considered as a security vulnerability referenced as `CVE-2022-0329 <https://nvd.nist.gov/vuln/detail/CVE-2022-0329>`_ (`#563 <https://github.com/Delgan/loguru/issues/563>`_).
 - Modify coroutine sink to make it discard log messages when ``loop=None`` and no event loop is running (due to internally using ``asyncio.get_running_loop()`` in place of ``asyncio.get_event_loop()``).
 - Remove the possibility to add a coroutine sink with ``enqueue=True`` if ``loop=None`` and no event loop is running.
 - Change default encoding of file sink to be ``utf8`` instead of ``locale.getpreferredencoding()`` (`#339 <https://github.com/Delgan/loguru/issues/339>`_).