Skip to content

Latest commit

 

History

History
25 lines (18 loc) · 883 Bytes

RELEASE.rst

File metadata and controls

25 lines (18 loc) · 883 Bytes

Releasing

Steps to release a new version

  • Change version in troposphere/__init__.py
  • Update CHANGELOG.md with changes made since last release
  • Verify release installs on Python2 and Python 3: make release-test
  • Create a signed tag: git tag --sign -m "Release 1.1.1" 1.1.1
  • Create PyPI release: python setup.py sdist upload --sign
  • Push commits: git push
  • Push tag: git push --tags
  • Update github release page: https://github.com/cloudtools/troposphere/releases

Helper to create CHANGELOG entries

git log --reverse --pretty=format:"%s" | tail -100 | sed 's/^/* /'

Helper to list supported resources

grep -h 'resource_type = "AWS::' troposphere/* | sed 's/[ ]*resource_type = "'// | cut -f1-3 -d: | sort | uniq | sed 's/^/- /'