-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
ccef223
commit ef43682
Showing
2 changed files
with
7 additions
and
8 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,23 +1,22 @@ | ||
# Changelog | ||
|
||
## [Unreleased] | ||
## Unreleased | ||
|
||
## 3.0.0 - 2024-09-23 | ||
|
||
- **Breaking** Footnotes are by default separated with linebreaks now. This can be changed by setting the new `Table` option `linebreak_footnotes = false` [#34](https://github.com/PumasAI/SummaryTables.jl/pull/34). | ||
- **Breaking** Changed `show_overall` keyword of `table_one` to `show_total`. The name of all total columns was changed from `"Overall"` to `"Total"` as well but this can be changed using the new `total_name` keyword. | ||
- Added ability to show "Total" statistics for subgroups in `table_one` [#30](https://github.com/PumasAI/SummaryTables.jl/pull/30). | ||
- Fixed tagging of header rows in docx output, such that the header section is now repeated across pages as expected [#32](https://github.com/PumasAI/SummaryTables.jl/pull/32). | ||
|
||
## [2.0.2] - 2024-09-16 | ||
## 2.0.2 - 2024-09-16 | ||
|
||
- Fixed issue where cells would not merge if they stored a `Multiline` value [#29](https://github.com/PumasAI/SummaryTables.jl/pull/29). | ||
|
||
## [2.0.1] - 2024-09-16 | ||
## 2.0.1 - 2024-09-16 | ||
|
||
- Fixed incorrect order of column group keys in `summarytable` and `listingtable` when some row/col group combinations were missing [#25](https://github.com/PumasAI/SummaryTables.jl/pull/25). | ||
|
||
## [2.0.0] - 2024-05-03 | ||
## 2.0.0 - 2024-05-03 | ||
|
||
- **Breaking** Changed generated Typst code to use the native table functionality available starting with Typst v0.11. Visual output should not change. | ||
|
||
[Unreleased]: https://github.com/PumasAI/SummaryTables.jl/compare/v2.0.0...HEAD | ||
[2.0.0]: https://github.com/PumasAI/SummaryTables.jl/compare/v1.0.0...v2.0.0 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
name = "SummaryTables" | ||
uuid = "6ce4ecf0-73a7-4ce3-9fb4-80ebfe887b60" | ||
authors = ["Julius <[email protected]>", "Mike <[email protected]>"] | ||
version = "2.0.2" | ||
version = "3.0.0" | ||
|
||
[deps] | ||
CategoricalArrays = "324d7699-5711-5eae-9e2f-1d82baa6b597" | ||
|