diff --git a/CHANGELOG.md b/CHANGELOG.md index 71ff66f6..fd70e7c8 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -109,3 +109,15 @@ Resulting in a folder structure like the following: ![fail message in webview](./docs/images/fail-message-in-webview.png) - Display error messages if React fails to load + +## [0.6.0] + +- New configuration environment variables for web compatability + +``` +CODEROAD_DISABLE_RUN_ON_SAVE=true // blocks saving on file system changes +CODEROAD_DISPLAY_RUN_TEST_BUTTON=true // adds a run test button to tutorial page +CODEROAD_TUTORIAL_URL='path/to/tutorial_config_file.json' // will load directly into tutorial +``` + +- Improves styles for inline code blocks diff --git a/package.json b/package.json index ded21022..33cfbfcd 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "coderoad", - "version": "0.5.0", + "version": "0.6.0", "description": "Play interactive coding tutorials in your editor", "keywords": [ "tutorial", diff --git a/web-app/package.json b/web-app/package.json index 0e182540..453256c4 100644 --- a/web-app/package.json +++ b/web-app/package.json @@ -1,6 +1,6 @@ { "name": "coderoad-app", - "version": "0.5.0", + "version": "0.6.0", "private": true, "scripts": { "build": "react-app-rewired build",