- Now config files are also looked up in `sys.path`, not just the `shortcuts` argument as it was before.
- Added the `update` method, that overwrites the scope with live Python objects:
python
config = read_config('some_path.config').update(value=15, another_value=[1, 2, 3])
- Added a console command that executes a config file given an entry point:
bash
run-config some_path.config value
Here `value` is the name of the entry point.