On Tue, May 10, 2016 at 5:20 PM, Trent Billington <[email protected]> wrote:
> Where can I find information about which version of a target language is > generated by the protobuf compilers? I can't find anything in the tutorials > or reference information on the developers.google.com website. > > I would like to know with protobuf3, which version of python, and php is > generated by the official compilers. Php is not released yet but should be > "soon" (https://github.com/google/protobuf/issues/358). Why is this > important information left out of the protobuf website, or in a easier to > find place if it is there? > You can find the version information in the release page: https://github.com/google/protobuf/releases For example, if you are using protoc-3.0.0-beta-3, the python version will be 3.0.0-beta-3, and Javascript version is 3.0.0-alpha-6. We actually share the same version number across all languages, so the language version of generated code is always the same as the version number of protoc (note that 3.0.0-beta-3 is the same as 3.0.0-alpha-6). > -- > You received this message because you are subscribed to the Google Groups > "Protocol Buffers" group. > To unsubscribe from this group and stop receiving emails from it, send an > email to [email protected]. > To post to this group, send email to [email protected]. > Visit this group at https://groups.google.com/group/protobuf. > For more options, visit https://groups.google.com/d/optout. > -- You received this message because you are subscribed to the Google Groups "Protocol Buffers" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To post to this group, send email to [email protected]. Visit this group at https://groups.google.com/group/protobuf. For more options, visit https://groups.google.com/d/optout.
