Skip to content
Snippets Groups Projects
Commit e9a64dfc authored by Stanley Cheung's avatar Stanley Cheung Committed by GitHub
Browse files

Merge pull request #9942 from stanley-cheung/php-prepare-for-1_2

PHP: prepare for 1.2 release
parents 07ad1b9c 82c6d8d4
No related branches found
No related tags found
No related merge requests found
...@@ -7,7 +7,7 @@ ...@@ -7,7 +7,7 @@
"license": "BSD-3-Clause", "license": "BSD-3-Clause",
"require": { "require": {
"php": ">=5.5.0", "php": ">=5.5.0",
"google/protobuf": "v3.1.0" "google/protobuf": "^v3.1.0"
}, },
"require-dev": { "require-dev": {
"google/auth": "v0.9" "google/auth": "v0.9"
......
...@@ -2,7 +2,7 @@ ...@@ -2,7 +2,7 @@
"name": "grpc/grpc-demo", "name": "grpc/grpc-demo",
"description": "gRPC example for PHP", "description": "gRPC example for PHP",
"require": { "require": {
"grpc/grpc": "v1.1.0" "grpc/grpc": "^v1.1.0"
}, },
"autoload": { "autoload": {
"psr-4": { "psr-4": {
......
...@@ -10,7 +10,7 @@ ...@@ -10,7 +10,7 @@
<email>grpc-packages@google.com</email> <email>grpc-packages@google.com</email>
<active>yes</active> <active>yes</active>
</lead> </lead>
<date>2017-01-13</date> <date>2017-03-01</date>
<time>16:06:07</time> <time>16:06:07</time>
<version> <version>
<release>1.2.0dev</release> <release>1.2.0dev</release>
...@@ -22,8 +22,8 @@ ...@@ -22,8 +22,8 @@
</stability> </stability>
<license>BSD</license> <license>BSD</license>
<notes> <notes>
- PHP Proto3 adoption #8179 - Added arg info macros #9751
- Various bug fixes - Updated codegen to be consistent with protobuf #9492
</notes> </notes>
<contents> <contents>
<dir baseinstalldir="/" name="/"> <dir baseinstalldir="/" name="/">
...@@ -1276,8 +1276,8 @@ Update to wrap gRPC C Core version 0.10.0 ...@@ -1276,8 +1276,8 @@ Update to wrap gRPC C Core version 0.10.0
</release> </release>
<release> <release>
<version> <version>
<release>1.1.0dev</release> <release>1.1.0RC1</release>
<api>1.1.0dev</api> <api>1.1.0RC1</api>
</version> </version>
<stability> <stability>
<release>beta</release> <release>beta</release>
...@@ -1287,7 +1287,39 @@ Update to wrap gRPC C Core version 0.10.0 ...@@ -1287,7 +1287,39 @@ Update to wrap gRPC C Core version 0.10.0
<license>BSD</license> <license>BSD</license>
<notes> <notes>
- PHP Proto3 adoption #8179 - PHP Proto3 adoption #8179
- Various bug fixes - Various bug fixes
</notes>
</release>
<release>
<version>
<release>1.1.0</release>
<api>1.1.0</api>
</version>
<stability>
<release>stable</release>
<api>stable</api>
</stability>
<date>2017-01-31</date>
<license>BSD</license>
<notes>
- PHP Proto3 adoption #8179
- Various bug fixes
</notes>
</release>
<release>
<version>
<release>1.2.0RC1</release>
<api>1.2.0RC1</api>
</version>
<stability>
<release>beta</release>
<api>beta</api>
</stability>
<date>2017-03-01</date>
<license>BSD</license>
<notes>
- Added arg info macros #9751
- Updated codegen to be consistent with protobuf #9492
</notes> </notes>
</release> </release>
</changelog> </changelog>
......
...@@ -158,7 +158,7 @@ $ composer install ...@@ -158,7 +158,7 @@ $ composer install
### Protobuf compiler ### Protobuf compiler
Again if you don't have it already, you need to install the protobuf compiler Again if you don't have it already, you need to install the protobuf compiler
`protoc`, version 3.2.0+. `protoc`, version 3.1.0+ (the newer the better).
If `protoc` hasn't been installed, you can download the `protoc` binaries from If `protoc` hasn't been installed, you can download the `protoc` binaries from
[the protocol buffers Github repository](https://github.com/google/protobuf/releases). [the protocol buffers Github repository](https://github.com/google/protobuf/releases).
......
...@@ -5,7 +5,7 @@ ...@@ -5,7 +5,7 @@
"version": "1.2.0", "version": "1.2.0",
"require": { "require": {
"php": ">=5.5.0", "php": ">=5.5.0",
"google/protobuf": "v3.1.0" "google/protobuf": "^v3.1.0"
}, },
"require-dev": { "require-dev": {
"google/auth": "v0.9" "google/auth": "v0.9"
......
...@@ -9,7 +9,7 @@ ...@@ -9,7 +9,7 @@
"license": "BSD-3-Clause", "license": "BSD-3-Clause",
"require": { "require": {
"php": ">=5.5.0", "php": ">=5.5.0",
"google/protobuf": "v3.1.0" "google/protobuf": "^v3.1.0"
}, },
"require-dev": { "require-dev": {
"google/auth": "v0.9" "google/auth": "v0.9"
......
...@@ -12,7 +12,7 @@ ...@@ -12,7 +12,7 @@
<email>grpc-packages@google.com</email> <email>grpc-packages@google.com</email>
<active>yes</active> <active>yes</active>
</lead> </lead>
<date>2017-01-13</date> <date>2017-03-01</date>
<time>16:06:07</time> <time>16:06:07</time>
<version> <version>
<release>${settings.php_version.php()}</release> <release>${settings.php_version.php()}</release>
...@@ -24,8 +24,8 @@ ...@@ -24,8 +24,8 @@
</stability> </stability>
<license>BSD</license> <license>BSD</license>
<notes> <notes>
- PHP Proto3 adoption #8179 - Added arg info macros #9751
- Various bug fixes - Updated codegen to be consistent with protobuf #9492
</notes> </notes>
<contents> <contents>
<dir baseinstalldir="/" name="/"> <dir baseinstalldir="/" name="/">
...@@ -312,8 +312,8 @@ ...@@ -312,8 +312,8 @@
</release> </release>
<release> <release>
<version> <version>
<release>1.1.0dev</release> <release>1.1.0RC1</release>
<api>1.1.0dev</api> <api>1.1.0RC1</api>
</version> </version>
<stability> <stability>
<release>beta</release> <release>beta</release>
...@@ -323,7 +323,39 @@ ...@@ -323,7 +323,39 @@
<license>BSD</license> <license>BSD</license>
<notes> <notes>
- PHP Proto3 adoption #8179 - PHP Proto3 adoption #8179
- Various bug fixes - Various bug fixes
</notes>
</release>
<release>
<version>
<release>1.1.0</release>
<api>1.1.0</api>
</version>
<stability>
<release>stable</release>
<api>stable</api>
</stability>
<date>2017-01-31</date>
<license>BSD</license>
<notes>
- PHP Proto3 adoption #8179
- Various bug fixes
</notes>
</release>
<release>
<version>
<release>1.2.0RC1</release>
<api>1.2.0RC1</api>
</version>
<stability>
<release>beta</release>
<api>beta</api>
</stability>
<date>2017-03-01</date>
<license>BSD</license>
<notes>
- Added arg info macros #9751
- Updated codegen to be consistent with protobuf #9492
</notes> </notes>
</release> </release>
</changelog> </changelog>
......
...@@ -7,7 +7,7 @@ ...@@ -7,7 +7,7 @@
"version": "${settings.php_version.php_composer()}", "version": "${settings.php_version.php_composer()}",
"require": { "require": {
"php": ">=5.5.0", "php": ">=5.5.0",
"google/protobuf": "v3.1.0" "google/protobuf": "^v3.1.0"
}, },
"require-dev": { "require-dev": {
"google/auth": "v0.9" "google/auth": "v0.9"
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment