diff --git a/app/package.json b/app/package.json index d8ba2fc0a43..907d9b8a202 100644 --- a/app/package.json +++ b/app/package.json @@ -1,6 +1,6 @@ { "name": "@previewjs/app", - "version": "1.0.1", + "version": "1.0.2", "license": "AGPL-3.0", "author": { "name": "François Wouts", diff --git a/integrations/intellij/src/main/kotlin/com/previewjs/intellij/plugin/services/PreviewJsService.kt b/integrations/intellij/src/main/kotlin/com/previewjs/intellij/plugin/services/PreviewJsService.kt index 6d7eb95a6a3..55fc977ad9b 100644 --- a/integrations/intellij/src/main/kotlin/com/previewjs/intellij/plugin/services/PreviewJsService.kt +++ b/integrations/intellij/src/main/kotlin/com/previewjs/intellij/plugin/services/PreviewJsService.kt @@ -104,7 +104,7 @@ ${e.stackTraceToString()}""", builder.environment()["PORT"] = "$PORT" builder.environment()["PREVIEWJS_INTELLIJ_VERSION"] = plugin.getVersion() builder.environment()["PREVIEWJS_PACKAGE_NAME"] = "@previewjs/app" - builder.environment()["PREVIEWJS_PACKAGE_VERSION"] = "1.0.1" + builder.environment()["PREVIEWJS_PACKAGE_VERSION"] = "1.0.2" println("Preview.js control plane errors will be logged to $errorLogFilePath") val process = builder.start() controlPlaneProcess = process diff --git a/integrations/vscode/webpack.config.js b/integrations/vscode/webpack.config.js index 37597dc82f1..a6e0c757722 100644 --- a/integrations/vscode/webpack.config.js +++ b/integrations/vscode/webpack.config.js @@ -45,7 +45,7 @@ module.exports = { ), } : { - "process.env.PREVIEWJS_PACKAGE_VERSION": JSON.stringify("1.0.1"), + "process.env.PREVIEWJS_PACKAGE_VERSION": JSON.stringify("1.0.2"), }), }), ],