ECII
ECII

Reputation: 10629

How can I monitor updates in Julia and all Julia packages?

Is there an easy way to monitor commits and development of julia and all julia packages? I am aware of https://github.com/JuliaLang/julia/commits/master

Upvotes: 3

Views: 250

Answers (1)

StefanKarpinski
StefanKarpinski

Reputation: 33259

If you watch the https://github.com/JuliaLang/julia repo, with appropriate GitHub settings, you will get emails for commits, pull-requests, issues, comments, etc. Packages are harder. You can similarly watch them if they're hosted on GitHub, but there are always new packages and you won't get updates about those. If you watch the https://github.com/JuliaLang/METADATA.jl repo, however, you will get notifications about all the changes there, so you'll at least get some kind of heads up about newly registered packages.

Upvotes: 6

Related Questions