Skip to content

Commit

Permalink
NEWS: Replace '*' with '-'
Browse files Browse the repository at this point in the history
  • Loading branch information
agrueneberg committed May 19, 2020
1 parent 9ebc084 commit e94ac20
Showing 1 changed file with 13 additions and 13 deletions.
26 changes: 13 additions & 13 deletions NEWS.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,45 +7,45 @@

## Breaking changes

* Test suite environments need to be passed via `local` argument of `source`.
- Test suite environments need to be passed via `local` argument of `source`.

## Other changes

* Use `inherits(., *)` instead of `class(.) == *` (R4 compat).
* Make test suite compatible with tinytest package.
* Replace testthat with tinytest.
- Use `inherits(., *)` instead of `class(.) == *` (R4 compat).
- Make test suite compatible with tinytest package.
- Replace testthat with tinytest.


# crochet 2.2.0

* Move test suite to `inst/test-suite` so that it can be used without
- Move test suite to `inst/test-suite` so that it can be used without
`--install-tests`.
* Move example in README to `StringMatrix` vignette.
- Move example in README to `StringMatrix` vignette.


# crochet 2.1.0

* Export `convertIndex` function.
- Export `convertIndex` function.


# crochet 2.0.1

* Fix incorrect index type determination when additional arguments were passed
- Fix incorrect index type determination when additional arguments were passed
to `extract()` and `replace()`.
* Fix missing `...` pass-through for single indices in `extract()`.
* Throw an error if index type is not supported.
- Fix missing `...` pass-through for single indices in `extract()`.
- Throw an error if index type is not supported.


# crochet 2.0.0

* The `length()` method must now be implemented in addition to `dim()` and
- The `length()` method must now be implemented in addition to `dim()` and
`dimnames()` for a matrix to be supported by crochet. One way to implement
`length()` could be `length.TYPE = function(x) prod(dim(x))`.
* Add parameter `allowDoubles` to support huge matrices by not converting
- Add parameter `allowDoubles` to support huge matrices by not converting
indices of type double to integers if the operation would overflow. Defaults
to `FALSE` to reduce the burden of implementing backends in statically typed
languages.
* Add `ktoij()` and `ijtok()` helper functions.
- Add `ktoij()` and `ijtok()` helper functions.


# crochet 1.0.0
Expand Down

0 comments on commit e94ac20

Please sign in to comment.