aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--CHANGES.txt5
-rw-r--r--php/ext/google/protobuf/package.xml20
-rw-r--r--php/ext/google/protobuf/protobuf.h2
-rwxr-xr-xpython/release.sh12
4 files changed, 29 insertions, 10 deletions
diff --git a/CHANGES.txt b/CHANGES.txt
index 1f1dd6d5..c83da2d6 100644
--- a/CHANGES.txt
+++ b/CHANGES.txt
@@ -89,7 +89,10 @@
* Added pretty-print filter to text format.
* Services and method descriptors are always printed even if generic_service
option is turned off.
-
+ * Note: AppEngine 2.5 is deprecated on June 2017 that AppEngine 2.5 will
+ never update protobuf runtime. Users who depend on AppEngine 2.5 should use
+ old protoc.
+
PHP
* Support PHP generic services. Specify file option php_generic_service=true
to enable generating service interface.
diff --git a/php/ext/google/protobuf/package.xml b/php/ext/google/protobuf/package.xml
index 20a45bc6..2d318517 100644
--- a/php/ext/google/protobuf/package.xml
+++ b/php/ext/google/protobuf/package.xml
@@ -13,8 +13,8 @@
<date>2017-01-13</date>
<time>16:06:07</time>
<version>
- <release>3.3.2</release>
- <api>3.3.0</api>
+ <release>3.4.0</release>
+ <api>3.4.0</api>
</version>
<stability>
<release>stable</release>
@@ -136,5 +136,21 @@ GA release.
GA release.
</notes>
</release>
+ <release>
+ <version>
+ <release>3.4.0</release>
+ <api>3.4.0</api>
+ </version>
+ <stability>
+ <release>stable</release>
+ <api>stable</api>
+ </stability>
+ <date>2017-08-16</date>
+ <time>15:33:07</time>
+ <license uri="https://opensource.org/licenses/BSD-3-Clause">3-Clause BSD License</license>
+ <notes>
+GA release.
+ </notes>
+ </release>
</changelog>
</package>
diff --git a/php/ext/google/protobuf/protobuf.h b/php/ext/google/protobuf/protobuf.h
index f9e9d229..b2838e56 100644
--- a/php/ext/google/protobuf/protobuf.h
+++ b/php/ext/google/protobuf/protobuf.h
@@ -37,7 +37,7 @@
#include "upb.h"
#define PHP_PROTOBUF_EXTNAME "protobuf"
-#define PHP_PROTOBUF_VERSION "3.3.2"
+#define PHP_PROTOBUF_VERSION "3.4.0"
#define MAX_LENGTH_OF_INT64 20
#define SIZEOF_INT64 8
diff --git a/python/release.sh b/python/release.sh
index e7b1a4aa..b0bf3b3f 100755
--- a/python/release.sh
+++ b/python/release.sh
@@ -79,16 +79,16 @@ python setup.py build
python setup.py test
# Deploy source package to testing PyPI
-python setup.py sdist upload -r https://testpypi.python.org/pypi
+python setup.py sdist upload -r https://test.pypi.org/legacy/
# Test locally with different python versions.
-run_install_test ${TESTING_VERSION} python2.7 https://testpypi.python.org/simple
-run_install_test ${TESTING_VERSION} python3.4 https://testpypi.python.org/simple
+run_install_test ${TESTING_VERSION} python2.7 https://test.pypi.org/simple
+run_install_test ${TESTING_VERSION} python3.4 https://test.pypi.org/simple
# Deploy egg/wheel packages to testing PyPI and test again.
-python setup.py bdist_egg bdist_wheel upload -r https://testpypi.python.org/pypi
-run_install_test ${TESTING_VERSION} python2.7 https://testpypi.python.org/simple
-run_install_test ${TESTING_VERSION} python3.4 https://testpypi.python.org/simple
+python setup.py bdist_egg bdist_wheel upload -r https://test.pypi.org/legacy/
+run_install_test ${TESTING_VERSION} python2.7 https://test.pypi.org/simple
+run_install_test ${TESTING_VERSION} python3.4 https://test.pypi.org/simple
echo "All install tests have passed using testing PyPI."