You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+8-4Lines changed: 8 additions & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -26,7 +26,11 @@ This document details the following:
26
26
# What is new
27
27
28
28
To stay up to date, signup for our [User Update](https://EmbeddedProto.com/signup).
29
-
29
+
30
+
## 3.6.0
31
+
* Update to Protobuf version 32.0.
32
+
* Added EmbeddedProto options to allow setting the size of the string (or bytes) field in when it is also repeated, example: `repeated string str = 1 [(EmbeddedProto.options).maxLength = 3, (EmbeddedProto.options).nestedMaxLength = 10];`.
33
+
30
34
## 3.5.3
31
35
* Fixed build problems in release 3.5.3.
32
36
@@ -92,7 +96,7 @@ You can request more information about a commercial license on our [website](htt
92
96
What is required to be able to generate source files based on .proto files:
93
97
1. Python 3.8 and up
94
98
2. Pip
95
-
3. Protobuf v21.5 and up (tested with v27.1)
99
+
3. Protobuf v32.0
96
100
4. Git
97
101
98
102
After installing the requirements, continue by cloning the Embedded Proto repo. We advised using Embedded Proto as a submodule in your project. This way, you can track the version of Embedded Proto with the version of your project.
@@ -108,9 +112,9 @@ python setup.py
108
112
```
109
113
Did you install protoc in a custom folder, or is the include folder of protobuf not in your path? In these cases, you may get an error from the setup script. You have to provide the location of the include with the --include parameter:
0 commit comments