Newer
Older
dub_jkp / changelog / add-ability-for-specify-version-range-for-commandline-commands.dd
  1. All commands now accept a version specification
  2.  
  3. Before this release dub could only get an exact version for some commands
  4. (`describe`, `generate`, `fetch`, etc...). All commands now accept a version specification,
  5. such as can be found in `dub.json` / `dub.sdl`:
  6.  
  7. dub fetch 'foo@>0.2.0'
  8. dub describe foo@'>=0.3.0 <1.0.0'
  9.  
  10. Note that commands such as `describe` will still not fetch from the network.