Skip to content
This repository has been archived by the owner on Jun 1, 2023. It is now read-only.

Releases: VividCortex/johnny-deps

Version 0.2.3

01 Sep 01:30
Compare
Choose a tag to compare

This version is for removing some external dependencies in tests. There are no other changes.

Parallel package installation

29 Aug 00:07
Compare
Choose a tag to compare

I just had to jump the version counter on this one, basically thanks to @elcuervo being an absolute boss johnny_deps now installs packages in parallel.

This should speed up significantly the installation of large dependency lists, he also did it with three lines of bash, which is just ridiculous.

This is not much of a benchmark, but on my machine and using my test Godeps file (consisting basically of random packages with random versions) I got these results:

johnny-deps 0.1.5 : 1m41s 
johnny-deps 0.2.2 : 45s

I love this man, give him your unending love and all the bacon he can eat <3.

Better Comments

08 Aug 18:47
Compare
Choose a tag to compare

Thanks to @nu7hatch johnny_deps now has better commenting, things like

github.com/VividCortex/ewma     v1.0   # Note: package robustly really needs this dependency.

now work and the code has been tidied up a bit too, we are now in 12 lines of actual code. Pretty sweet. :)

Adds comment feature.

07 Aug 23:07
Compare
Choose a tag to compare

This release adds the ability to comment lines in the Godeps file, like so:

github.com/pote/johnny-deps-testing-package   v5.0
#github.com/VividCortex/ewma                  v1.0
# This line is a comment.
                          # this is an oddly-placed comment

It should be noted thought that in the interest of simplicity only lines that begin with a # are comments, so therefore comments like the one below are not supported.

github.com/pote/johnny-deps-testing-package v5.0    # This is an invalid comment.