2.8 KiB
2.8 KiB
Babel changelog
0.6.2 - 19/06/2015
- Added
binDiroption to specify where the build output should be placed (Thank you @minciue). - Fixed deprecated code (Thank you @lou15b).
- Fixes to old
.babelfolder handling (Thank you @ClementJnc). - Added ability to list only the installed packages via
nimble list --installed(Thank you @hiteshjasani. - Fixes compilation with Nim v0.11.2 (Thank you @JCavallo).
- Implements the
--nimbleDiroption (Thank you @ClementJnc). - Fixes
nimble uninstallnot giving an error when no package name is specified (Thank you @dom96). - When installing and building
a tagged version of a package fails, Nimble will
now attempt to install and build the
#headof the repo (Thank you @dom96). - Fixed cloning of git repositories with non-standard default branches (Thank you @dom96).
Full changelog: https://github.com/nim-lang/nimble/compare/v0.6...v0.6.2
0.6.0 - 26/12/2014
- Renamed from Babel to Nimble
- Introduces compatibility with Nim v0.10.0+
- Implemented the
initcommand which generates a .nimble file for new projects. (Thank you @singularperturbation) - Improved cloning of git repositories. (Thank you @gradha)
- Fixes
pathcommand issues (Thank you @gradha) - Fixes problems with symlinking when there is a space in the path. (Thank you @philip-wernersbach)
- The code page will now be changed when executing Nimble binary packages. This adds support for Unicode in cmd.exe (#54).
.cmdfiles are now used in place of.batfiles. Shell files for Cygwin/Git bash are also now created.
0.4.0 - 24/06/2014
- Introduced the ability to delete packages.
- When installing packages, a list of files which have been copied is stored in the babelmeta.json file.
- When overwriting an already installed package babel will no longer delete the whole directory but only the files which it installed.
- Versions are now specified on the command line after the '@' character when
installing and uninstalling packages. For example:
babel install foobar@0.1andbabel install foobar@#head. - The babel package installation directory can now be changed in the new config.
- Fixes a number of issues.