Skip to content

Commit cde0fa2

Browse files
committed
bump version
1 parent 0347da8 commit cde0fa2

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

apps/server/src/index.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
1-
import { parse } from 'node:url';
21
import { Connect, Identity, Inboxes, Messages, SpaceEvents, Utils } from '@graphprotocol/hypergraph';
32
import { bytesToHex, randomBytes } from '@noble/hashes/utils.js';
43
import cors from 'cors';
54
import { Effect, Exit, Schema } from 'effect';
65
import express, { type Request, type Response } from 'express';
6+
import { parse } from 'node:url';
77
import WebSocket, { WebSocketServer } from 'ws';
88
import { addAppIdentityToSpaces } from './handlers/add-app-identity-to-spaces.js';
99
import { applySpaceEvent } from './handlers/applySpaceEvent.js';
@@ -69,7 +69,7 @@ app.use(express.json({ limit: '2mb' }));
6969
app.use(cors());
7070

7171
app.get('/', (_req, res) => {
72-
res.send('Server is running (v0.0.6)');
72+
res.send('Server is running (v0.0.7)');
7373
});
7474

7575
app.get('/connect/spaces', async (req, res) => {

packages/hypergraph-react/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@graphprotocol/hypergraph-react",
3-
"version": "0.0.6",
3+
"version": "0.0.7",
44
"description": "React implementation and additional functionality, components, and hooks for the hypergraph SDK framework",
55
"keywords": ["Web3", "Local-First", "Knowledge Graph", "Graph Protocol", "react"],
66
"publishConfig": {

packages/hypergraph/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@graphprotocol/hypergraph",
3-
"version": "0.0.6",
3+
"version": "0.0.7",
44
"description": "SDK for building performant, type-safe, local-first dapps on top of The Graph ecosystem knowledge graphs.",
55
"publishConfig": {
66
"access": "public",

0 commit comments

Comments
 (0)