rich/CHANGELOG.md

123 lines
2.3 KiB
Markdown
Raw Normal View History

2020-01-19 17:18:05 +00:00
# Changelog
All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
2020-03-17 17:12:08 +00:00
## [0.8.0] - 2020-03-17
2020-03-16 22:18:22 +00:00
### Added
- CJK support
- Console level highlight flag
2020-03-17 17:07:00 +00:00
- Added encoding argument to Syntax.from_path
2020-03-16 22:18:22 +00:00
### Changed
2020-03-17 17:07:00 +00:00
- Dropped support for Windows command prompt (try https://www.microsoft.com/en-gb/p/windows-terminal-preview/)
2020-03-16 22:18:22 +00:00
- Added task_id to Progress.track
2020-03-15 15:50:10 +00:00
## [0.7.2] - 2020-03-15
### Fixed
- KeyError for missing pygments style
2020-03-13 14:27:24 +00:00
## [0.7.1] - 2020-03-13
### Fixed
- Issue with control codes being used in length calculation
2020-03-13 14:57:02 +00:00
### Changed
- Remove current_style concept, which wasn't really used and was problematic for concurrency
2020-03-12 17:36:40 +00:00
## [0.7.0] - 2020-03-12
2020-03-05 18:21:22 +00:00
### Changed
- Added width option to Panel
- Change special method `__render_width__` to `__measure__`
- Dropped the "markdown style" syntax in console markup
2020-03-11 00:14:16 +00:00
- Optimized style rendering
2020-03-05 18:21:22 +00:00
2020-03-07 17:45:01 +00:00
### Added
- Added Console.show_cursor method
- Added Progress bars
2020-03-07 17:45:01 +00:00
2020-03-09 17:28:49 +00:00
### Fixed
- Fixed wrapping when a single word was too large to fit in a line
2020-03-03 16:20:28 +00:00
## [0.6.0] - 2020-03-03
### Added
- Added tab_size to Console and Text
- Added protocol.is_renderable for runtime check
2020-03-02 10:26:55 +00:00
- Added emoji switch to Console
- Added inherit boolean to Theme
- Made Console thread safe, with a thread local buffer
### Changed
- Console.markup attribute now effects Table
- SeparatedConsoleRenderable and RichCast types
### Fixed
- Fixed tabs breaking rendering by converting to spaces
2020-02-23 18:29:43 +00:00
## [0.5.0] - 2020-02-23
2020-02-23 18:27:38 +00:00
### Changed
- Replaced `__console_str__` with `__rich__`
2020-02-22 20:43:24 +00:00
## [0.4.1] - 2020-02-22
### Fixed
- Readme links in Pypi
## [0.4.0] - 2020-02-22
2020-02-21 18:09:45 +00:00
### Added
- Added Traceback rendering and handler
- Added rich.constrain
2020-02-21 18:29:25 +00:00
- Added rich.rule
2020-02-21 18:09:45 +00:00
### Fixed
- Fixed unnecessary padding
2020-02-04 18:28:55 +00:00
## [0.3.3] - 2020-02-04
2020-02-02 14:13:31 +00:00
### Fixed
- Fixed Windows color support
2020-02-04 18:26:53 +00:00
- Fixed line width on windows issue (https://github.com/willmcgugan/rich/issues/7)
- Fixed Pretty print on Windows
2020-02-02 14:13:31 +00:00
2020-01-26 16:09:22 +00:00
## [0.3.2] - 2020-01-26
### Added
- Added rich.logging
## [0.3.1] - 2020-01-22
2020-01-22 16:22:23 +00:00
### Added
- Added colorama for Windows support
2020-01-19 17:18:05 +00:00
## [0.3.0] - 2020-01-19
### Added
- First official release, API still bto be stabilized