Skip to content

Commit

Permalink
Fix erronous PR merge, next RC
Browse files Browse the repository at this point in the history
  • Loading branch information
soerenbf committed Oct 19, 2023
1 parent 7cdeb90 commit 227bc1a
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 10 deletions.
4 changes: 2 additions & 2 deletions packages/ccd-js-gen/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -32,10 +32,10 @@
},
"license": "Apache-2.0",
"peerDependencies": {
"@concordium/web-sdk": "7.0.0-rc.4"
"@concordium/web-sdk": "7.0.0-rc.5"
},
"dependencies": {
"@concordium/web-sdk": "7.0.0-rc.4",
"@concordium/web-sdk": "7.0.0-rc.5",
"buffer": "^6.0.3",
"commander": "^11.0.0",
"sanitize-filename": "^1.6.3",
Expand Down
2 changes: 1 addition & 1 deletion packages/sdk/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@concordium/web-sdk",
"version": "7.0.0-rc.4",
"version": "7.0.0-rc.5",
"license": "Apache-2.0",
"engines": {
"node": ">=16"
Expand Down
2 changes: 1 addition & 1 deletion packages/sdk/src/types/chainUpdate.ts
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ import type {
import type * as Energy from './Energy.js';
import type * as Duration from './Duration.js';
import type * as CcdAmount from './CcdAmount.js';
import { Timestamp } from '../Timestamp.js';
import type * as Timestamp from './Timestamp.js';

type ChainUpdate<UpdateType, T> = {
/** The type of the update */
Expand Down
4 changes: 1 addition & 3 deletions packages/sdk/test/ci/types/json.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -77,9 +77,7 @@ describe('jsonStringify', () => {
// eslint-disable-next-line @typescript-eslint/no-explicit-any
(obj as any)['circular'] = obj;

expect(() => jsonStringify(obj)).toThrowError(
JsonCircularReferenceError
);
expect(() => jsonStringify(obj)).toThrowError();
});

test('Allow non-circular references to same object', () => {
Expand Down
6 changes: 3 additions & 3 deletions yarn.lock
Original file line number Diff line number Diff line change
Expand Up @@ -654,7 +654,7 @@ __metadata:
version: 0.0.0-use.local
resolution: "@concordium/ccd-js-gen@workspace:packages/ccd-js-gen"
dependencies:
"@concordium/web-sdk": 7.0.0-rc.4
"@concordium/web-sdk": 7.0.0-rc.5
"@types/jest": ^26.0.23
"@types/node": ^20.5.0
buffer: ^6.0.3
Expand All @@ -666,7 +666,7 @@ __metadata:
ts-morph: ^19.0.0
typescript: ^5.2.2
peerDependencies:
"@concordium/web-sdk": 7.0.0-rc.4
"@concordium/web-sdk": 7.0.0-rc.5
bin:
ccd-js-gen: bin/ccd-js-gen.js
languageName: unknown
Expand Down Expand Up @@ -704,7 +704,7 @@ __metadata:
languageName: unknown
linkType: soft

"@concordium/web-sdk@7.0.0-rc.4, @concordium/web-sdk@workspace:^, @concordium/web-sdk@workspace:packages/sdk":
"@concordium/web-sdk@7.0.0-rc.5, @concordium/web-sdk@workspace:^, @concordium/web-sdk@workspace:packages/sdk":
version: 0.0.0-use.local
resolution: "@concordium/web-sdk@workspace:packages/sdk"
dependencies:
Expand Down

0 comments on commit 227bc1a

Please sign in to comment.