Publishing a New Versionยถ

Congratulations on adding new features and fixing bugs! Hereโ€™s how a project member can publish a new version:

  1. Update the version number in pyproject.toml, which should be near the top of the file:

[tool.poetry]
name = "in2lambda"
version = "0.2.1"  # <-- This line here
  1. Create a new tag for the docker image to be built. For instance, to tag a version v1.2.3:

$ git tag -a v1.2.3 -m "v1.2.3"
$ git push origin v1.2.3
  1. When one of the PyPi in2lambda maintainers is happy, they can update the package:

$ poetry build
$ poetry publish
  1. Celebrate the new release! ๐ŸŽ‰