Skip to content

Commit

Permalink
🔖 Version 0.11.0
Browse files Browse the repository at this point in the history
  • Loading branch information
ronisbr committed Jan 22, 2021
1 parent 3d12f00 commit a533a3c
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 <[email protected]>"]
version = "0.10.0"
version = "0.11.0"

[compat]
julia = "1"
Expand Down

2 comments on commit a533a3c

@ronisbr
Copy link
Owner Author

Choose a reason for hiding this comment

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

@JuliaRegistrator register()

Release notes:

  • By default, all the cells are now rendered using the option :limit => true of IOContext. To return to the old behavior, use limit_printing = false.
  • HTML backend now supports row names.
  • LaTeX backend now supports row names.
  • A new LaTeX pre-defined format was added: tf_latex_modern.
  • A new LaTeX pre-defined format was added: tf_latex_booktabs.
  • The wrap table environment of LaTeX backend can now be changed using the keyword wrap_table_environment.
  • A new table type of LaTeX backend was added: :array.
  • In Text backend, it is now possible to align the column cells using regexes (see alignment_regex_anchor).
  • It is now possible to select the table label in LaTeX backend. (Issue Add a \label tag option for LaTeX output (work around provided) #103)
  • LaTeX tables can now control whether to use the table environment or not.
  • HTML classes in CSS are now surrounded by quotes.
  • An unnecessary space in HTML tags was removed.
  • The color of omitted cell text in Text backend was changed from red to cyan. (Issue [Use another color than red for "$n rows omitted" #94])
  • The compat bounds of Reexport.jl was updated. (Issue Reexport compat bound issue? #105)
  • PrettyTables.jl now support Tables.jl that returns tuples as columns. (Issue PrettyTables 0.10 doesn't handle Tuple columns #90)
  • The option sortkeys can now be used when printing dictionaries using HTML backend.
  • The first header is now correctly set when using longtable in LaTeX backend, avoiding multiple entries in list of tables. (Issue Multi-page longtables generate multiple entries in listoftables. #95)
  • The formatter ft_latex_sn now only modifies Number.
  • The arguments of @ptconf was not being escaped. (Issue @ptconf cannot use variables outside PrettyTables scope #107)

@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/28497

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 v0.11.0 -m "<description of version>" a533a3c01e2c585bf65c13dfb42e080032980a08
git push origin v0.11.0

Please sign in to comment.