@xtr-dev/rondevu-client 0.3.3 → 0.3.4

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/dist/rondevu.js +1 -1
  2. package/package.json +1 -1
package/dist/rondevu.js CHANGED
@@ -40,7 +40,7 @@ export class Rondevu {
40
40
  async checkServerVersion() {
41
41
  try {
42
42
  const { version: serverVersion } = await this.api.health();
43
- const clientVersion = '0.3.3'; // Should match package.json
43
+ const clientVersion = '0.3.4'; // Should match package.json
44
44
  if (!this.isVersionCompatible(clientVersion, serverVersion)) {
45
45
  console.warn(`[Rondevu] Version mismatch: client v${clientVersion}, server v${serverVersion}. ` +
46
46
  'This may cause compatibility issues.');
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@xtr-dev/rondevu-client",
3
- "version": "0.3.3",
3
+ "version": "0.3.4",
4
4
  "description": "TypeScript client for Rondevu peer signaling and discovery server",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",