Please mind that this could potentially break some user code since named arguments (after the `*`) are required for the following functions:
python
add_additional_resource(self, description, location, *, copy_file=False, file_type=None, resource_license=None)
and `Variable` instantiation:
python
def __init__(self, name, *, is_independent=True, is_binned=True, units="", values=None, zero_uncertainties_warning=True):
What's Changed
* Update release creation docs by clelange in https://github.com/HEPData/hepdata_lib/pull/269
* Add ProSelecta example to `add_additional_resource` in docs by GraemeWatt in https://github.com/HEPData/hepdata_lib/pull/270
* Require named arguments to fix pylint too-many-positional-arguments by clelange in https://github.com/HEPData/hepdata_lib/pull/273
**Full Changelog**: https://github.com/HEPData/hepdata_lib/compare/v0.16.0...v0.17.0