Skip to content

Commit 438e1ca

Browse files
Nana-ECIvo-Yankov
andauthored
Bump release to 0.1.0 (#202)
* Bump release to 0.1.0 - Bump release to 0.1.0 - Add exit command to acceptance test to ensure completion - Cherry pick docker version fix on acceptance tests Signed-off-by: Nana-EC <[email protected]> Co-authored-by: Ivo Yankov <[email protected]>
1 parent fd6c6c7 commit 438e1ca

File tree

8 files changed

+17
-13
lines changed

8 files changed

+17
-13
lines changed

.github/workflows/release-production.yml

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@ on:
66

77
env:
88
OWNER: hashgraph
9+
PACKAGE_NAME: hedera-json-rpc-relay
910
REGISTRY: ghcr.io
1011

1112
jobs:
@@ -41,12 +42,15 @@ jobs:
4142
push: true
4243
tags: ${{ env.REGISTRY }}/${{ github.repository }}:${{env.TAG}}
4344

45+
- name: Install packages
46+
run: npm ci
47+
4448
- name: Produce artifact
45-
run: tar -czf hedera-json-rpc-relay.tgz -C ./packages .
49+
run: tar -czf ${{ env.PACKAGE_NAME }}.tgz -C ./packages .
4650

4751
- name: Upload artifact
4852
uses: actions/upload-artifact@v2
4953
with:
50-
name: ${{ env.MODULE }}
54+
name: ${{ env.PACKAGE_NAME }}
5155
path: ./*.tgz
5256
if-no-files-found: error

docker-compose.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ version: "3.7"
22
services:
33
relay:
44
container_name: hedera-jspn-rpc-relay
5-
image: "ghcr.io/hashgraph/hedera-json-rpc-relay:0.1.0-rc1"
5+
image: "ghcr.io/hashgraph/hedera-json-rpc-relay:0.1.0"
66
restart: "unless-stopped"
77
ports:
88
- 7546:7546

helm-chart/Chart.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,6 @@ apiVersion: v2
22
name: hedera-json-rpc-relay
33
description: Helm chart deployment of the hashgraph/hedera-json-rpc-relay
44
type: application
5-
version: 0.1.0-rc1
6-
appVersion: "0.1.0-rc1"
5+
version: 0.1.0
6+
appVersion: "0.1.0"
77
home: https://github.com/hashgraph/hedera-json-rpc-relay

helm-chart/values.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ image:
66
repository: ghcr.io/hashgraph/hedera-json-rpc-relay
77
pullPolicy: Always
88
# Overrides the image tag whose default is the chart appVersion.
9-
tag: 0.1.0-rc1
9+
tag: 0.1.0
1010

1111
imagePullSecrets: []
1212
nameOverride: ""

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
]
2121
},
2222
"scripts": {
23-
"acceptancetest": "ts-mocha ./packages/server/tests/acceptance.spec.ts",
23+
"acceptancetest": "ts-mocha ./packages/server/tests/acceptance.spec.ts --exit",
2424
"build": "npx lerna run build",
2525
"build-and-test": "npx lerna run build && npx lerna run test",
2626
"build:docker": "docker build . -t ${npm_package_name}",

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.1.0-rc1",
3+
"version": "0.1.0",
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: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@hashgraph/json-rpc-server",
3-
"version": "0.1.0-rc1",
3+
"version": "0.1.0",
44
"description": "Hedera Hashgraph Ethereum JSON RPC server. Accepts requests for Ethereum JSON RPC 2.0 APIs",
55
"main": "dist/index.js",
66
"keywords": [],
@@ -39,7 +39,7 @@
3939
"build": "pnpm clean && pnpm compile",
4040
"clean": "rm -rf ./dist && rm -rf tsconfig.tsbuildinfo",
4141
"compile": "tsc -b tsconfig.json",
42-
"acceptancetest": "ts-mocha ./tests/acceptance.spec.ts",
42+
"acceptancetest": "ts-mocha ./tests/acceptance.spec.ts --exit",
4343
"start": "node dist/index.js",
4444
"test": "nyc ts-mocha --recursive ./tests/server.spec.ts"
4545
},

packages/server/tests/acceptance.spec.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -93,9 +93,9 @@ describe('RPC Server Integration Tests', async function () {
9393

9494
if (useLocalNode === 'true') {
9595
// set env variables for docker images until local-node is updated
96-
process.env['NETWORK_NODE_IMAGE_TAG'] = '0.26.2-patch.3';
97-
process.env['HAVEGED_IMAGE_TAG'] = '0.25.4';
98-
process.env['MIRROR_IMAGE_TAG'] = '0.57.2';
96+
process.env['NETWORK_NODE_IMAGE_TAG'] = '0.26.2';
97+
process.env['HAVEGED_IMAGE_TAG'] = '0.26.2';
98+
process.env['MIRROR_IMAGE_TAG'] = '0.58.0';
9999
logger.trace(`Docker container versions, services: ${process.env['NETWORK_NODE_IMAGE_TAG']}, mirror: ${process.env['MIRROR_IMAGE_TAG']}`);
100100

101101
// start local-node

0 commit comments

Comments
 (0)