We submitted an R package on CRAN. Now we want to update our package under a new different name, because more new functions are introduced in this update, and the old name of it doesn't well represent the new release. What are we supposed to do under this circumstance?
The related topics and discussions I can find are only:
-
If an update will change the package's API and hence affect packages depending on it, it is expected that you will contact the maintainers of affected packages and suggest changes, and give them time to prepare updates before submitting your updated package. Do mention in the submission email which packages are affected and that their maintainers have been informed. In order to derive the reverse dependencies of a package including the addresses of maintainers who have to be notified upon changes, the function reverse_dependencies_with_maintainers is available from the developer website.
and the question from R-devel mailing list: Rename the package published on CRAN
However, there is no any further instructions specifying the exact steps we should do.
The possible way and steps we can think of are:
- submit the update under the new name to CRAN ftp server
- inform the maintainers of packages that depends on ours of the rename
- send an email to [email protected] to explain and ask for withdrawal of the old package
or:
- submit the update under the new name through the submission form
- inform the maintainers of packages that depends on ours of the rename
- still keep the old package on CRAN and leave a note on the page to point to the new package, but without further update anymore
Which one are better? Or what is the correct way to do?