-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request grpc#7817 from stanley-cheung/php-update-composer-…
…v1_0 PHP: bump version
- Loading branch information
Showing
6 changed files
with
105 additions
and
12 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,7 @@ | ||
{ | ||
"name": "grpc/grpc-demo", | ||
"description": "gRPC example for PHP", | ||
"minimum-stability": "dev", | ||
"require": { | ||
"grpc/grpc": "v0.15.2" | ||
"grpc/grpc": "v1.0.0", | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -10,19 +10,19 @@ | |
<email>[email protected]</email> | ||
<active>yes</active> | ||
</lead> | ||
<date>2016-08-09</date> | ||
<date>2016-08-22</date> | ||
<time>16:06:07</time> | ||
<version> | ||
<release>1.0.1</release> | ||
<api>1.0.1</api> | ||
<release>1.0.1RC1</release> | ||
<api>1.0.1RC1</api> | ||
</version> | ||
<stability> | ||
<release>stable</release> | ||
<api>stable</api> | ||
</stability> | ||
<license>BSD</license> | ||
<notes> | ||
- Fixed Ubuntu compile error #7571, #7642 | ||
- TBD | ||
</notes> | ||
<contents> | ||
<dir baseinstalldir="/" name="/"> | ||
|
@@ -1146,5 +1146,35 @@ Update to wrap gRPC C Core version 0.10.0 | |
- Fixed Ubuntu compile error #7571, #7642 | ||
</notes> | ||
</release> | ||
<release> | ||
<version> | ||
<release>1.0.0</release> | ||
<api>1.0.0</api> | ||
</version> | ||
<stability> | ||
<release>stable</release> | ||
<api>stable</api> | ||
</stability> | ||
<date>2016-08-18</date> | ||
<license>BSD</license> | ||
<notes> | ||
- gRPC 1.0.0 release | ||
</notes> | ||
</release> | ||
<release> | ||
<version> | ||
<release>1.0.1RC1</release> | ||
<api>1.0.1RC1</api> | ||
</version> | ||
<stability> | ||
<release>stable</release> | ||
<api>stable</api> | ||
</stability> | ||
<date>2016-08-22</date> | ||
<license>BSD</license> | ||
<notes> | ||
- TBD | ||
</notes> | ||
</release> | ||
</changelog> | ||
</package> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -12,7 +12,7 @@ | |
<email>[email protected]</email> | ||
<active>yes</active> | ||
</lead> | ||
<date>2016-08-09</date> | ||
<date>2016-08-22</date> | ||
<time>16:06:07</time> | ||
<version> | ||
<release>${settings.php_version.php()}</release> | ||
|
@@ -24,7 +24,7 @@ | |
</stability> | ||
<license>BSD</license> | ||
<notes> | ||
- Fixed Ubuntu compile error #7571, #7642 | ||
- TBD | ||
</notes> | ||
<contents> | ||
<dir baseinstalldir="/" name="/"> | ||
|
@@ -264,5 +264,35 @@ | |
- Fixed Ubuntu compile error #7571, #7642 | ||
</notes> | ||
</release> | ||
<release> | ||
<version> | ||
<release>1.0.0</release> | ||
<api>1.0.0</api> | ||
</version> | ||
<stability> | ||
<release>stable</release> | ||
<api>stable</api> | ||
</stability> | ||
<date>2016-08-18</date> | ||
<license>BSD</license> | ||
<notes> | ||
- gRPC 1.0.0 release | ||
</notes> | ||
</release> | ||
<release> | ||
<version> | ||
<release>${settings.php_version.php()}</release> | ||
<api>${settings.php_version.php()}</api> | ||
</version> | ||
<stability> | ||
<release>stable</release> | ||
<api>stable</api> | ||
</stability> | ||
<date>2016-08-22</date> | ||
<license>BSD</license> | ||
<notes> | ||
- TBD | ||
</notes> | ||
</release> | ||
</changelog> | ||
</package> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
%YAML 1.2 | ||
--- | | ||
{ | ||
"name": "grpc/grpc", | ||
"type": "library", | ||
"description": "gRPC library for PHP", | ||
"keywords": ["rpc"], | ||
"homepage": "http://grpc.io", | ||
"license": "BSD-3-Clause", | ||
"version": "${settings.php_version.php_composer()}", | ||
"require": { | ||
"php": ">=5.5.0", | ||
"stanley-cheung/protobuf-php": "v0.6" | ||
}, | ||
"require-dev": { | ||
"google/auth": "v0.9" | ||
}, | ||
"autoload": { | ||
"psr-4": { | ||
"Grpc\\": "lib/Grpc/" | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters