Skip to content

Commit 0faa438

Browse files
committed
Fix misfiled NEWS.md entry, combine two breaking changes sections
1 parent 902bf61 commit 0faa438

File tree

1 file changed

+20
-21
lines changed

1 file changed

+20
-21
lines changed

NEWS.md

Lines changed: 20 additions & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,18 @@ Pre-1.0.0 numbering scheme: 0.x will indicate releases, while 0.x.y will indicat
44

55
# epiprocess 0.9
66

7+
## Breaking changes
8+
- In `epi[x]_slide`:
9+
- `names_sep` is deprecated, and if you return data frames from your
10+
computations, they will no longer be unpacked into separate columns with
11+
name prefixes; instead:
12+
- if you don't provide a name for your slide computations, they will be
13+
unpacked into separate columns, just without any name prefixes
14+
- if you do provide a name for your slide computation, it will become a
15+
packed data.frame-class column (see `tidyr::pack`).
16+
- `as_list_col` is deprecated; you can now directly return a list from your
17+
slide computations instead.
18+
719
## Improvements
820

921
- Added `complete.epi_df`, which fills in missing values in an `epi_df` with
@@ -21,16 +33,14 @@ Pre-1.0.0 numbering scheme: 0.x will indicate releases, while 0.x.y will indicat
2133

2234
## Breaking changes
2335

24-
- In `epi[x]_slide`:
25-
- `names_sep` is deprecated, and if you return data frames from your
26-
computations, they will no longer be unpacked into separate columns with
27-
name prefixes; instead:
28-
- if you don't provide a name for your slide computations, they will be
29-
unpacked into separate columns, just without any name prefixes
30-
- if you do provide a name for your slide computation, it will become a
31-
packed data.frame-class column (see `tidyr::pack`).
32-
- `as_list_col` is deprecated; you can now directly return a list from your
33-
slide computations instead.
36+
- `epi_df`'s are now more strict about what types they allow in the time column.
37+
Namely, we are explicit about only supporting `Date` at the daily and weekly
38+
cadence and generic integer types (for yearly cadence).
39+
- `epi_slide` `before` and `after` arguments are now require the user to
40+
specific time units in certain cases. The `time_step` argument has been
41+
removed.
42+
- `epix_slide` `before` argument now defaults to `Inf`, and requires the user to
43+
specify units in some cases. The `time_step` argument has been removed.
3444
- `detect_outlr_stl(seasonal_period = NULL)` is no longer accepted. Use
3545
`detect_outlr_stl(seasonal_period = <value>, seasonal_as_residual = TRUE)`
3646
instead. See `?detect_outlr_stl` for more details.
@@ -87,17 +97,6 @@ Pre-1.0.0 numbering scheme: 0.x will indicate releases, while 0.x.y will indicat
8797
of `epi_df`s to let `{epipredict}` work more easily with other libraries (#471).
8898
- Removed some external package dependencies.
8999

90-
## Breaking Changes
91-
92-
- `epi_df`'s are now more strict about what types they allow in the time column.
93-
Namely, we are explicit about only supporting `Date` at the daily and weekly
94-
cadence and generic integer types (for yearly cadence).
95-
- `epi_slide` `before` and `after` arguments are now require the user to
96-
specific time units in certain cases. The `time_step` argument has been
97-
removed.
98-
- `epix_slide` `before` argument now defaults to `Inf`, and requires the user to
99-
specify units in some cases. The `time_step` argument has been removed.
100-
101100
# epiprocess 0.7.0
102101

103102
## Breaking changes:

0 commit comments

Comments
 (0)