Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -10,12 +10,17 @@ README_files/
RcppTskit/**/.quarto/
RcppTskit/cran-comments.html
RcppTskit/cran-comments_files/
RcppTskit/covr/
RcppTskit/inst/doc
RcppTskit/src/*.gcda
RcppTskit/src/*.gcno
RcppTskit/src/*.dll*
RcppTskit/src/*.o
RcppTskit/src/*.so
RcppTskit/src/Makevars
RcppTskit/src/Makevars.win
RcppTskit/src/**/*.gcda
RcppTskit/src/**/*.gcno
RcppTskit/src/tskit/*.o
RcppTskit/vignettes/*.R
RcppTskit/vignettes/*.html
Expand Down
3 changes: 3 additions & 0 deletions RcppTskit/.Rbuildignore
Original file line number Diff line number Diff line change
Expand Up @@ -13,12 +13,15 @@
^cran-comments\.html$
^cran-comments\.md$
^cran-comments_files$
^covr$
^inst/examples/create_test\.trees\.R$
^inst/examples/create_test\.trees\.py$
^inst/examples/explore_reticulate\.R$
^inst/examples/explore_slendr\.R$
^notes_pkg_dev\.Rmd$
^pkg_dev_notes\.md$
^src/.*\.gcda$
^src/.*\.gcno$
^test\.trees$
^tests/testthat/_snaps$
^tools/clang-tidy\.py$
Expand Down
11 changes: 8 additions & 3 deletions RcppTskit/NEWS.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ All notable changes to `RcppTskit` are documented in this file.
The file format is based on [Keep a Changelog](https://keepachangelog.com),
and releases adhere to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [0.3.0] 2026-03-02
## [0.3.0] 2026-04-07 (not yet released)

### Added (new features)

Expand Down Expand Up @@ -35,6 +35,11 @@ and releases adhere to [Semantic Versioning](https://semver.org/spec/v2.0.0.html
to append node rows from \code{R}, mirroring `tsk_node_table_add_row()`.
- Added `rtsk_edge_table_add_row()` and `TableCollection$edge_table_add_row()`
to append edge rows from \code{R}, mirroring `tsk_edge_table_add_row()`.
- Added `rtsk_site_table_add_row()` and `TableCollection$site_table_add_row()`
to append site rows from \code{R}, mirroring `tsk_site_table_add_row()`.
- Added `rtsk_mutation_table_add_row()` and
`TableCollection$mutation_table_add_row()` to append mutation rows from
\code{R}, mirroring `tsk_mutation_table_add_row()`.
- TODO

### Changed
Expand All @@ -56,8 +61,8 @@ and releases adhere to [Semantic Versioning](https://semver.org/spec/v2.0.0.html
### Maintenance

- Turn vignette URL as hyperlinks and similar cosmetics.
- State mirroring of the `R/Python` APIs and `C++/C` APIs across the package.
- Update tskit C to 1.3.1
- State that we mirror the `R/Python` APIs and `C++/C` APIs across the package.
- Update `tskit C` to 1.3.1
- TODO

## [0.2.0] - 2026-02-22
Expand Down
Loading
Loading