- Print a message and exit when the github rate-limit is reached (#136) (@russmatney)
- Friendlier env vars for neil github token usage (#136) (@russmatney)
BABASHKA_NEIL_DEV_GITHUB_USER
->NEIL_GITHUB_USER
BABASHKA_NEIL_DEV_GITHUB_TOKEN
->NEIL_GITHUB_TOKEN
The old env vars are left in-place as a fallback, but may be removed in a future version.
neil dep add
now supports--tag
and--latest-tag
(@russmatney)neil dep upgrade
enhancements (@russmatney)- when
:git/tag
is used, upgrades to the repo's latest tag (instead of the latest sha) - support prefixless
:tag
and:sha
coords, which tools.deps supports (for backwards compatibility) - upgrade alias deps (now the default).
neil dep upgrade --alias tests
supports upgrading deps for a particular alias.neil dep upgrade --no-aliases
supports upgrading only the project deps.
- the
neil dep upgrade --dry-run
output can now be piped back intoneil dep add
, so you can now select a single upgrade from a list of available viafzf
:neil dep upgrade --dry-run | fzf | xargs ./neil dep add
- when
- Don't add libraries when version is unknown (@russmatney)
- Introduce
neil dep upgrade
API for upgrading existing dependencies. By @teodorlu and @russmatney. - Add nix flake. By @jlesquembre.
neil version
improvements. By @rads.
- Add
neil version
subcommandsneil version
(updated, now includes project version)neil version set [version]
neil version [major|minor|patch] [version]
neil version tag
- Save project name in
:aliases {:neil {:project {:name ...}}}
- Generate default test with
neil add test
based on project name - Use project name in
build.clj
- Add
neil test
- Support
neil dep search --help
- Upgrade deps
- Minor improvements for
new
-
Add
neil new
: invokesdeps-new
with template. Recommended template to use withneil
isscratch
. Typeneil new --help
to see help. -
Add
neil add nrepl
: add:nrepl
alias todeps.edn