Skip to content

Commit

Permalink
🔖 Version 2.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
ronisbr committed Sep 7, 2022
1 parent 2ff0a2e commit 6b50308
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Project.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ uuid = "08abe8d2-0d0c-5749-adfa-8a2ac140af0d"
license = "MIT"
desc = "Print data in formatted tables"
authors = ["Ronan Arraes Jardim Chagas <ronisbr@gmail.com>"]
version = "1.3.1"
version = "2.0.0"

[deps]
Crayons = "a8cc5b0e-0ffa-5ad4-8c14-923d3ee1735f"
Expand Down

2 comments on commit 6b50308

@ronisbr
Copy link
Owner Author

@ronisbr ronisbr commented on 6b50308 Sep 7, 2022

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@JuliaRegistrator register

Release notes:

  • The default option of standalone in HTML backend is new false instead of true.
  • The filters were removed to improve the code maintainability. Table filtering must be done now before calling pretty_table.
  • The cells with undefined reference is now handled differently to avoid confusion with cells that contains undef. (Issue Printing of UndefInitializer() #170)
  • The support of Julia 1.0 was dropped.
  • The following options and structures were renamed (the old versions are now deprecated):
  • HTMLDecoration => HtmlDecoration
  • HTMLHighlighter => HtmlHighlighter
  • HTMLTableFormat => HtmlTableFormat
  • URLTextCell => UrlTextCell
  • crop_num_lines_at_beginning => reserved_display_lines
  • noheader => show_header
  • nosubheader => show_subheader
  • row_name* => row_label*
  • rownum_header_crayon => row_number_header_crayon
  • Many bugs in LaTeX escaping were fixed. - ![Feature][badge-feature] Two new options were added to limit the number of rows and columns that will be printed in all backends: max_num_of_columns and max_num_of_rows.
  • The HTML backend now shows the omitted cell summary.
  • The HTML backend now have vertical cropping.
  • The HTML backend now have a top bar where the user can print information.
  • The HTML highlight now has an option to change the font style.
  • The type HtmlCell can now be used to add raw HTML code to a table cell. (Issue Rich HTML output #166)
  • The row number and label can now be decorated in HTML.
  • The option maximum_columns_width can be used in HTML to limit the maximum width of the cells.
  • The option title can now be customized for the header cells in HTML (header_cell_titles).
  • Many internal changes allowed to drastically increase the performance. The input tables are now wrapped in a new structure that is responsible to merge the data to be printed (header, additional columns, etc.).
  • The algorithm to obtain the cells from tables with row access (Tables.jl) were improved. (Issue Tables.jl interface and iterators #174)
  • OffsetArrays.jl is now supported. (Issue pretty_table should require_one_based_indexing #110)

@JuliaRegistrator
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Registration pull request created: JuliaRegistries/General/67872

After the above pull request is merged, it is recommended that a tag is created on this repository for the registered package version.

This will be done automatically if the Julia TagBot GitHub Action is installed, or can be done manually through the github interface, or via:

git tag -a v2.0.0 -m "<description of version>" 6b5030845a5f011318d2542b11e630c2350672bc
git push origin v2.0.0

Please sign in to comment.