File tree Expand file tree Collapse file tree 2 files changed +37
-1
lines changed Expand file tree Collapse file tree 2 files changed +37
-1
lines changed Original file line number Diff line number Diff line change
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
Original file line number Diff line number Diff line change 2
2
3
3
setup (
4
4
name = "betterproto" ,
5
- version = "1.1 .0" ,
5
+ version = "1.2 .0" ,
6
6
description = "A better Protobuf / gRPC generator & library" ,
7
7
long_description = open ("README.md" , "r" ).read (),
8
8
long_description_content_type = "text/markdown" ,
You can’t perform that action at this time.
0 commit comments