- Add the ability to specify the version of node as an environmental variable
using
NODE_VERSION
. This makes it a lot easier to define the version of node that will be installed. - Update the default version of node to 0.10.26, the most recent version at the time of writing.
- Adds strict version checking to prevent some version comparison issues.
- Corrects issue with
os.path.join
whenPROJECT_DIR
is not specified.
- Drop calls of commands
curl
andtar
in favour of python modules to make sure that this still works on machines without those commands installed. - Add support for
package.json
file to specify a custom version ofnode
. This allows to re-align the versioning ofvirtual-node
with python conventions.
- Adds check for existing version of virtual-node
- Fix issues when used as dependency in
setup.py
- Switch from using
install
tobuild
command
- Initial release