GunnarFarneback / LocalRegistry.jl

Create and maintain local registries for Julia packages.
Other
223 stars 21 forks source link

Support registering an activated package. #32

Closed GunnarFarneback closed 3 years ago

GunnarFarneback commented 3 years ago

This streamlines registration of the package you're working on. Assuming your current directory is at the top of your package, registering a new version is just

julia --project
using LocalRegistry
register()

or if you prefer a one-liner

julia --project -e 'using LocalRegistry; register()'
codecov-commenter commented 3 years ago

Codecov Report

Merging #32 (a837a04) into master (a24b848) will increase coverage by 0.14%. The diff coverage is 100.00%.

Impacted file tree graph

@@            Coverage Diff             @@
##           master      #32      +/-   ##
==========================================
+ Coverage   98.02%   98.17%   +0.14%     
==========================================
  Files           1        1              
  Lines         152      164      +12     
==========================================
+ Hits          149      161      +12     
  Misses          3        3              
Impacted Files Coverage Δ
src/LocalRegistry.jl 98.17% <100.00%> (+0.14%) :arrow_up:

Continue to review full report at Codecov.

Legend - Click here to learn more Δ = absolute <relative> (impact), ø = not affected, ? = missing data Powered by Codecov. Last update a24b848...a837a04. Read the comment docs.