Publishing a New Versionยถ
Congratulations on adding new features and fixing bugs! Hereโs how a project member can publish a new version:
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
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
When one of the PyPi in2lambda maintainers is happy, they can update the package:
$ poetry build
$ poetry publish
Celebrate the new release! ๐