First release

Walk through creating an initial release with bumpwright.

  1. Initialise bumpwright and create a configuration file.

    $ bumpwright init
    
    [tool.bumpwright]
    version_file = "demo.py"
    
  2. Review the suggested version bump before committing.

    $ bumpwright decide --format md
    

    bumpwright suggests: minor

    • [MINOR] demo:greet: Added public symbol

  3. Create the release and tag it.

    Console
    $ bumpwright bump --commit --tag
    

    See CLI Reference for more command details.