Skip to content

Commit c931743

Browse files
authored
Merge branch (protocolbuffers#4466)
* Fix setup.py for windows build. * Bump version number to 3.5.2 * Cat the test-suite.log on errors for presubits
1 parent 579f81e commit c931743

14 files changed

Lines changed: 53 additions & 19 deletions

File tree

Protobuf.podspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
# dependent projects use the :git notation to refer to the library.
66
Pod::Spec.new do |s|
77
s.name = 'Protobuf'
8-
s.version = '3.5.1'
8+
s.version = '3.5.2'
99
s.summary = 'Protocol Buffers v.3 runtime library for Objective-C.'
1010
s.homepage = 'https://github.com/google/protobuf'
1111
s.license = '3-Clause BSD License'

configure.ac

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ AC_PREREQ(2.59)
1717
# In the SVN trunk, the version should always be the next anticipated release
1818
# version with the "-pre" suffix. (We used to use "-SNAPSHOT" but this pushed
1919
# the size of one file name in the dist tarfile over the 99-char limit.)
20-
AC_INIT([Protocol Buffers],[3.5.1],[protobuf@googlegroups.com],[protobuf])
20+
AC_INIT([Protocol Buffers],[3.5.2],[protobuf@googlegroups.com],[protobuf])
2121

2222
AM_MAINTAINER_MODE([enable])
2323

csharp/Google.Protobuf.Tools.nuspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<title>Google Protocol Buffers tools</title>
66
<summary>Tools for Protocol Buffers - Google's data interchange format.</summary>
77
<description>See project site for more info.</description>
8-
<version>3.5.1</version>
8+
<version>3.5.2</version>
99
<authors>Google Inc.</authors>
1010
<owners>protobuf-packages</owners>
1111
<licenseUrl>https://github.com/google/protobuf/blob/master/LICENSE</licenseUrl>

csharp/src/Google.Protobuf/Google.Protobuf.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<Description>C# runtime library for Protocol Buffers - Google's data interchange format.</Description>
55
<Copyright>Copyright 2015, Google Inc.</Copyright>
66
<AssemblyTitle>Google Protocol Buffers</AssemblyTitle>
7-
<VersionPrefix>3.5.1</VersionPrefix>
7+
<VersionPrefix>3.5.2</VersionPrefix>
88
<Authors>Google Inc.</Authors>
99
<TargetFrameworks>netstandard1.0;net45</TargetFrameworks>
1010
<GenerateDocumentationFile>true</GenerateDocumentationFile>

java/core/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<parent>
77
<groupId>com.google.protobuf</groupId>
88
<artifactId>protobuf-parent</artifactId>
9-
<version>3.5.1</version>
9+
<version>3.5.2</version>
1010
</parent>
1111

1212
<artifactId>protobuf-java</artifactId>

java/pom.xml

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

1212
<groupId>com.google.protobuf</groupId>
1313
<artifactId>protobuf-parent</artifactId>
14-
<version>3.5.1</version>
14+
<version>3.5.2</version>
1515
<packaging>pom</packaging>
1616

1717
<name>Protocol Buffers [Parent]</name>

java/util/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<parent>
77
<groupId>com.google.protobuf</groupId>
88
<artifactId>protobuf-parent</artifactId>
9-
<version>3.5.1</version>
9+
<version>3.5.2</version>
1010
</parent>
1111

1212
<artifactId>protobuf-java-util</artifactId>

js/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "google-protobuf",
3-
"version": "3.5.1",
3+
"version": "3.5.2",
44
"description": "Protocol Buffers for JavaScript",
55
"main": "google-protobuf.js",
66
"files": [

php/ext/google/protobuf/package.xml

Lines changed: 19 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,11 +10,11 @@
1010
<email>protobuf-opensource@google.com</email>
1111
<active>yes</active>
1212
</lead>
13-
<date>2017-12-11</date>
13+
<date>2018-03-06</date>
1414
<time>11:02:07</time>
1515
<version>
16-
<release>3.5.1</release>
17-
<api>3.5.1</api>
16+
<release>3.5.2</release>
17+
<api>3.5.2</api>
1818
</version>
1919
<stability>
2020
<release>stable</release>
@@ -216,5 +216,21 @@ GA release.
216216
GA release.
217217
</notes>
218218
</release>
219+
<release>
220+
<version>
221+
<release>3.5.2</release>
222+
<api>3.5.2</api>
223+
</version>
224+
<stability>
225+
<release>stable</release>
226+
<api>stable</api>
227+
</stability>
228+
<date>2018-03-06</date>
229+
<time>11:02:07</time>
230+
<license uri="https://opensource.org/licenses/BSD-3-Clause">3-Clause BSD License</license>
231+
<notes>
232+
G A release.
233+
</notes>
234+
</release>
219235
</changelog>
220236
</package>

php/ext/google/protobuf/protobuf.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@
3737
#include "upb.h"
3838

3939
#define PHP_PROTOBUF_EXTNAME "protobuf"
40-
#define PHP_PROTOBUF_VERSION "3.5.1"
40+
#define PHP_PROTOBUF_VERSION "3.5.2"
4141

4242
#define MAX_LENGTH_OF_INT64 20
4343
#define SIZEOF_INT64 8

0 commit comments

Comments
 (0)