diff --git a/CHANGELOG.md b/CHANGELOG.md new file mode 100644 index 0000000..135429a --- /dev/null +++ b/CHANGELOG.md @@ -0,0 +1,36 @@ +# Changelog + +All notable changes to this project will be documented in this file. + +The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), +and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). + +## [Unreleased] + +## [1.2.0] - 2019-10-28 + +- Generated code output auto-formatting via [Black](https://github.com/psf/black) +- Simplified gRPC helper functions + +## [1.1.0] - 2019-10-27 + +- Better JSON casing support +- Handle field names which clash with Python reserved words +- Better handling of default values from type introspection +- Support for Google Duration & Timestamp types +- Support for Google wrapper types +- Documentation updates + +## [1.0.1] - 2019-10-22 + +- README to the PyPI details page + +## [1.0.0] - 2019-10-22 + +- Initial release + +[unreleased]: https://github.com/danielgtaylor/python-betterproto/compare/v1.2.0...HEAD +[1.2.0]: https://github.com/danielgtaylor/python-betterproto/compare/v1.1.0...v1.2.0 +[1.1.0]: https://github.com/danielgtaylor/python-betterproto/compare/v1.0.1...v1.1.0 +[1.0.1]: https://github.com/danielgtaylor/python-betterproto/compare/v1.0.0...v1.0.1 +[1.0.0]: https://github.com/danielgtaylor/python-betterproto/releases/tag/v1.0.0 diff --git a/setup.py b/setup.py index abd9d94..4f75857 100644 --- a/setup.py +++ b/setup.py @@ -2,7 +2,7 @@ from setuptools import setup, find_packages setup( name="betterproto", - version="1.1.0", + version="1.2.0", description="A better Protobuf / gRPC generator & library", long_description=open("README.md", "r").read(), long_description_content_type="text/markdown",