Skip to content

Commit 25de949

Browse files
authored
Bump 0.25.0 rc1 (#1312)
* Updated to reflect new directory structure. (#1310) Signed-off-by: ebadiere <[email protected]> * Bump PR 0.25.0-rc1 Signed-off-by: ebadiere <[email protected]> --------- Signed-off-by: ebadiere <[email protected]>
1 parent 50deb5f commit 25de949

File tree

8 files changed

+11
-11
lines changed

8 files changed

+11
-11
lines changed

README.md

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

1717
Implementation of an Ethereum JSON RPC APIs for Hedera Hashgraph. Utilises both Hedera Consensus Nodes and Mirror nodes
1818
to support RPC queries as defined in
19-
the [JSON RPC Specification](https://playground.open-rpc.org/?schemaUrl=https://raw.githubusercontent.com/hashgraph/hedera-json-rpc-relay/main/docs/openrpc.json&uiSchema%5BappBar%5D%5Bui:splitView%5D=false&uiSchema%5BappBar%5D%5Bui:input%5D=false&uiSchema%5BappBar%5D%5Bui:examplesDropdown%5D=false)
19+
the [JSON RPC Specification](https://playground.open-rpc.org/?schemaUrl=https://raw.githubusercontent.com/hashgraph/hedera-json-rpc-relay/release/0.25/docs/openrpc.json&uiSchema%5BappBar%5D%5Bui:splitView%5D=false&uiSchema%5BappBar%5D%5Bui:input%5D=false&uiSchema%5BappBar%5D%5Bui:examplesDropdown%5D=false)
2020

2121
## Building
2222

charts/hedera-json-rpc-relay/Chart.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
apiVersion: v2
2-
appVersion: "0.25.0-SNAPSHOT"
2+
appVersion: "0.25.0-rc1"
33
description: Helm chart deployment of the hashgraph/hedera-json-rpc-relay
44
home: https://github.com/hashgraph/hedera-json-rpc-relay
55
icon: https://camo.githubusercontent.com/cca6b767847bb8ca5c7059481ba13a5fc81c5938/68747470733a2f2f7777772e6865646572612e636f6d2f6c6f676f2d6361706974616c2d686261722d776f72646d61726b2e6a7067
@@ -21,4 +21,4 @@ name: hedera-json-rpc-relay
2121
sources:
2222
- https://github.com/hashgraph/hedera-json-rpc-relay
2323
type: application
24-
version: 0.25.0-SNAPSHOT
24+
version: 0.25.0-rc1

docker-compose.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ version: "3.7"
22
services:
33
relay:
44
container_name: hedera-json-rpc-relay
5-
image: "ghcr.io/hashgraph/hedera-json-rpc-relay:main"
5+
image: "ghcr.io/hashgraph/hedera-json-rpc-relay:0.25.0-rc1"
66
restart: "unless-stopped"
77
ports:
88
- 7546:7546
@@ -12,7 +12,7 @@ services:
1212
- ./.env:/home/node/app/.env
1313
relay-ws:
1414
container_name: hedera-json-rpc-relay-ws
15-
image: "ghcr.io/hashgraph/hedera-json-rpc-relay:main"
15+
image: "ghcr.io/hashgraph/hedera-json-rpc-relay:0.25.0-rc1"
1616
command: start:ws
1717
environment:
1818
HEALTHCHECK_PORT: 8547

docs/openrpc.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
"info": {
44
"title": "Hedera JSON-RPC Specification",
55
"description": "A specification of the implemented Ethereum JSON RPC APIs interface for Hedera clients and adheres to the Ethereum execution APIs schema.",
6-
"version": "0.25.0-SNAPSHOT"
6+
"version": "0.25.0-rc1"
77
},
88
"servers": [
99
{

packages/relay/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@hashgraph/json-rpc-relay",
3-
"version": "0.25.0-SNAPSHOT",
3+
"version": "0.25.0-rc1",
44
"description": "Hedera Hashgraph implementation of Ethereum JSON RPC APIs. Utilises both the Hedera Consensus Nodes and the Mirror Nodes for transaction management and information retrieval",
55
"types": "dist/index.d.ts",
66
"main": "dist/index.js",

packages/server/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@hashgraph/json-rpc-server",
3-
"version": "0.25.0-SNAPSHOT",
3+
"version": "0.25.0-rc1",
44
"description": "Hedera Hashgraph Ethereum JSON RPC server. Accepts requests for Ethereum JSON RPC 2.0 APIs",
55
"main": "dist/index.js",
66
"keywords": [],

packages/ws-server/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@hashgraph/json-rpc-ws-server",
3-
"version": "0.25.0-SNAPSHOT",
3+
"version": "0.25.0-rc1",
44
"description": "Hedera Hashgraph Ethereum JSON RPC socket server. Accepts socket connections for the purpose of subscribing to real-time data.",
55
"main": "dist/index.js",
66
"keywords": [],

scripts/.bump-version.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ const helmChartRegex = 'version: \\d+\\.\\d+\\.\\d+(-\\w+)?';
7070
replace({
7171
regex: helmChartRegex,
7272
replacement: `version: ${newVersion}`,
73-
paths: ['helm-chart/Chart.yaml'],
73+
paths: ['charts/hedera-json-rpc-relay/Chart.yaml'],
7474
recursive: false,
7575
silent: false,
7676
});
@@ -79,7 +79,7 @@ const helmChartAppVersionRegex = 'appVersion: \"\\d+\\.\\d+\\.\\d+(-\\w+)?\"';
7979
replace({
8080
regex: helmChartAppVersionRegex,
8181
replacement: `appVersion: "${newVersion}"`,
82-
paths: ['helm-chart/Chart.yaml'],
82+
paths: ['charts/hedera-json-rpc-relay/Chart.yaml'],
8383
recursive: false,
8484
silent: false,
8585
});

0 commit comments

Comments
 (0)