I'm developing a package that has been released, but every week or every few weeks there are new features added to the core version.
What I'd like to do is to notify users that new features are available such as
julia> using Package
Note: new features are available:
- feature 1
- feature 2
call Pkg.update("Package") to make these features available
Is there a standard/built-in way of doing this? I'd rather not make the users have to install the Requests
and LibCurl
packages for this single feature.