Skip to content

Releases: phsym/prettytable-rs

v0.10.0

27 Dec 10:51
4d66e6e
Compare
Choose a tag to compare

Fixed

  • Fix panic due to incorrect ANSI escape handling #137
  • Fix display of empty tables #127

Changed

  • Remove the unsafe code in Table::as_ref #146
  • Switch atty to is-terminal #151
  • Minimal Supported Rust Version bumped to 1.56

Thanks

v0.9.0

15 Aug 15:16
Compare
Choose a tag to compare

This release has been updated with latest dependencies versions.

This crate has been abandonned without notice for quite a while due to some personnal reasons. My apologies for that.
I'll try to do my best to continue to maintain it, at least for security updates. If I can't the find time to do it, I'll have no other option than
deprecating it, or find new contributors to handover the maintenance to. Feel free to raise your hand if you're interrested.
In the meantime, please expect a low update rate, and again please accept my apologies.

I'll do a pass on opened PRs after summer vacations.

v0.8.0

27 Sep 21:56
Compare
Choose a tag to compare

Changelog

  • #80 Added the possibility to style the left and right border separately
  • #79 Fixed cell width issues when using ANSI color codes.
  • #84 Update csv to version 1
  • #85 Implemented horizontal span
  • #89 Refactored modules and reexports
  • #93 Added FORMAT_BOX_CHARS
  • #92 Printing a table returns the number of printed lines
  • Deprecated some functions (see #87)
    • Cell::print
    • Cell::print_term
    • Cell::get_height
    • Cell::get_width
    • TableFormat::print_line_separator
    • TableFormat::print_column_separator
    • TableSlice::get_column_num
    • Table::get_column_num
    • Row::column_count
    • Row::get_height
    • Row::get_column_width
    • Row::print
    • Row::print_term
  • LineSeparator::print is now private

Minimum supported Rust version is 1.26.0

v0.7.0

04 May 21:05
Compare
Choose a tag to compare

Breaking changes:

  • term types are now reexported.
  • Mimimum require rust version is now 1.18.0

v0.6.7

05 Jun 21:17
Compare
Choose a tag to compare
  • Updated dependencies:
    • csv: 0.5
    • encode-unicode: 0.3
  • Fixed some predifined formats (thanks to @hcpl)
  • Fixed padding which were not properly displayed (thanks again to @hcpl)
  • Add indentation customization capability
  • Some code cleanup

Fixed panic when printing with colors on terminals that do not support them

02 Oct 16:04
Compare
Choose a tag to compare

CSV is now a deactivable default feature

18 Sep 09:58
Compare
Choose a tag to compare
Merge pull request #39 from alexbool/master

cfg-out `csv` feature

Support to CSV import/export and unicode chars for table's borders

13 Sep 19:21
Compare
Choose a tag to compare
v0.6.4

Updated crate version to 0.6.4 in Cargo.toml

Windows specific newlines are now a deactivable default value

11 Sep 19:31
Compare
Choose a tag to compare
v0.6.3

Updated rust version to 1.11.0 in appveyor script

v0.6.2

22 Apr 12:33
Compare
Choose a tag to compare
  • Updated lazy_static crate version
  • Implemented some iterators over tables and rows