14
0
forked from pool/python-rich

Accepting request 824925 from home:jayvdb:py-new

- Update to v5.0.0
  * Change to console markup syntax to not parse Python structures
    as markup, i.e. `[1,2,3]` is treated as a literal, not a tag.
  * Standard color numbers syntax has changed to `"color(<number>)"`
    so that `[5]` (for example) is considered a literal.
  * Markup escape method has changed from double brackets to
    preceding with a backslash, so `foo[[]]` would be `foo\[bar]`
- From v4.2.2
  * Added thread to automatically call update() in progress.track().
    Replacing previous adaptive algorithm.
  * Second attempt at working around https://bugs.python.org/issue37871

OBS-URL: https://build.opensuse.org/request/show/824925
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-rich?expand=0&rev=10
This commit is contained in:
Tomáš Chvátal
2020-08-08 06:06:05 +00:00
committed by Git OBS Bridge
parent e8c0041bfc
commit d932ec9b89
4 changed files with 20 additions and 4 deletions

View File

@@ -1,3 +1,19 @@
-------------------------------------------------------------------
Sat Aug 8 04:47:19 UTC 2020 - John Vandenberg <jayvdb@gmail.com>
- Update to v5.0.0
* Change to console markup syntax to not parse Python structures
as markup, i.e. `[1,2,3]` is treated as a literal, not a tag.
* Standard color numbers syntax has changed to `"color(<number>)"`
so that `[5]` (for example) is considered a literal.
* Markup escape method has changed from double brackets to
preceding with a backslash, so `foo[[]]` would be `foo\[bar]`
- From v4.2.2
* Added thread to automatically call update() in progress.track().
Replacing previous adaptive algorithm.
* Second attempt at working around https://bugs.python.org/issue37871
-------------------------------------------------------------------
Fri Jul 31 08:06:43 UTC 2020 - Marketa Calabkova <mcalabkova@suse.com>