8000 Add changelog, version bump · mapped/python-betterproto@3d5c12c · GitHub
[go: up one dir, main page]

Skip to content

Commit 3d5c12c

Browse files
committed
Add changelog, version bump
1 parent 706bd5a commit 3d5c12c

File tree

2 files changed

+37
-1
lines changed

2 files changed

+37
-1
lines changed

CHANGELOG.md

Lines changed: 36 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,36 @@
1+
# Changelog
2+
3+
All notable changes to this project will be documented in this file.
4+
5+
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
6+
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
7+
8+
## [Unreleased]
9+
10+
## [1.2.0] - 2019-10-28
11+
12+
- Generated code output auto-formatting via [Black](https://github.com/psf/black)
13+
- Simplified gRPC helper functions
14+
15+
## [1.1.0] - 2019-10-27
16+
17+
- Better JSON casing support
18+
- Handle field names which clash with Python reserved words
19+
- Better handling of default values from type introspection
20+
- Support for Google Duration & Timestamp types
21+
- Support for Google wrapper types
22+
- Documentation updates
23+
24+
## [1.0.1] - 2019-10-22
25+
26+
- README to the PyPI details page
27+
28+
## [1.0.0] - 2019-10-22
29+
30+
- Initial release
31+
32+
[unreleased]: https://github.com/danielgtaylor/python-betterproto/compare/v1.2.0...HEAD
33+
[1.2.0]: https://github.com/danielgtaylor/python-betterproto/compare/v1.1.0...v1.2.0
34+
[1.1.0]: https://github.com/danielgtaylor/python-betterproto/compare/v1.0.1...v1.1.0
35+
[1.0.1]: https://github.com/danielgtaylor/python-betterproto/compare/v1.0.0...v1.0.1
36+
[1.0.0]: https://github.com/danielgtaylor/python-betterproto/releases/tag/v1.0.0

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
setup(
44
name="betterproto",
5-
version="1.1.0",
5+
version="1.2.0",
66
description="A better Protobuf / gRPC generator & library",
77
long_description=open("README.md", "r").read(),
88
long_description_content_type="text/markdown",

0 commit comments

Comments
 (0)
0