Skip to content

Commit

Permalink
chore(version): update the version of pegasus server and client of ea…
Browse files Browse the repository at this point in the history
…ch language to 2.5.0 (cherry-pick #1660) (#1670)

Upgrade the version of pegasus server and clients:

- upgrade the version to 2.5.0-SPAPSHOT for cpp server, java and scala client;
- upgrade the version to 2.5.0 for python and nodejs client;
- no need to upgrader version for go client, since it has been bound to git branch.

All of the server and clients would be released on [v2.5](https://github.com/apache/incubator-pegasus/tree/v2.5).

This PR is to cherry-pick #1660 into v2.5.
  • Loading branch information
empiredan authored Nov 2, 2023
1 parent 0aebd10 commit 70f824f
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion java-client/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
</parent>
<groupId>org.apache.pegasus</groupId>
<artifactId>pegasus-client</artifactId>
<version>2.4-SNAPSHOT</version>
<version>2.5.0-SNAPSHOT</version>
<packaging>jar</packaging>
<name>Pegasus Java Client</name>

Expand Down
2 changes: 1 addition & 1 deletion nodejs-client/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "pegasus-nodejs-client",
"version": "1.0.14",
"version": "2.5.0",
"description": "offical pegasus nodejs client",
"main": "index.js",
"scripts": {
Expand Down
2 changes: 1 addition & 1 deletion python-client/pypegasus/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,4 +18,4 @@
# specific language governing permissions and limitations
# under the License.

__version__ = '0.0.1.2'
__version__ = '2.5.0'
4 changes: 2 additions & 2 deletions scala-client/build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
* under the License.
*/

version := "2.2.0-3-release"
version := "2.5.0-SNAPSHOT"

organization := "org.apache"

Expand Down Expand Up @@ -54,6 +54,6 @@ credentials += Credentials(

libraryDependencies ++= Seq(
"com.google.guava" % "guava" % "21.0",
"org.apache.pegasus" % "pegasus-client" % "2.4-SNAPSHOT",
"org.apache.pegasus" % "pegasus-client" % "2.5.0-SNAPSHOT",
"org.scalatest" %% "scalatest" % "3.0.3" % Test
)
2 changes: 1 addition & 1 deletion src/include/pegasus/version.h
Original file line number Diff line number Diff line change
Expand Up @@ -18,4 +18,4 @@
*/

#pragma once
#define PEGASUS_VERSION "2.4.0-SNAPSHOT"
#define PEGASUS_VERSION "2.5.0-SNAPSHOT"

0 comments on commit 70f824f

Please sign in to comment.