From 9362a71054f499d4e49153aa78c4997b00b00095 Mon Sep 17 00:00:00 2001 From: "Patrick J. Cherry" Date: Fri, 29 Jul 2022 14:31:19 +0100 Subject: [PATCH 1/3] Update Changelog for v0.2.0 and add v0.3.0 --- CHANGELOG.md | 22 +++++++++++++++++++++- package.json | 2 +- 2 files changed, 22 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index c81085054..eff5332db 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,11 +5,31 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), ## [Unreleased] +## [0.3.0] + +### Changed +- Versioned deployments of the UI (editor-ui#140) + +## [0.2.0] + +### Added +- Mission Zero handover docs (editor-ui#128) +- S3 deployment GH action + +### Changed +- Upgrade to CodeMirror 6 (editor-ui#131, editor-ui#133) + +### Fixed +- Whitespace handling in Firefox (editor-ui#132) +- Stopwatch hook so PythonRunner doesn't get stuck resetting timer (e7b747053) + ## [0.1.0] ### Added - Events in Web Component indicating whether Mission Zero criteria have been met (editor-ui#113) -[Unreleased]: https://github.com/RaspberryPiFoundation/editor-ui/compare/v0.1.0...HEAD +[Unreleased]: https://github.com/RaspberryPiFoundation/editor-ui/compare/v0.3.0...HEAD [0.1.0]: https://github.com/RaspberryPiFoundation/editor-ui/releases/tag/v0.1.0 +[0.2.0]: https://github.com/RaspberryPiFoundation/editor-ui/releases/tag/v0.2.0 +[0.3.0]: https://github.com/RaspberryPiFoundation/editor-ui/releases/tag/v0.3.0 diff --git a/package.json b/package.json index 647ae475d..e7a491e17 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@raspberrypifoundation/editor-ui", - "version": "v0.2.0", + "version": "v0.3.0", "private": true, "dependencies": { "@babel/core": "^7.17.10", From 0bb0a82c481c70f0f086980d508d78a8241aeee2 Mon Sep 17 00:00:00 2001 From: "Patrick J. Cherry" Date: Mon, 5 Sep 2022 11:54:19 +0100 Subject: [PATCH 2/3] Update changelog --- CHANGELOG.md | 26 +++++++++++++++++++++----- 1 file changed, 21 insertions(+), 5 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index eff5332db..8197bc9b8 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,26 +7,42 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), ## [0.3.0] +### Added +- Give the web component the option to enable the senseHAT on page load (#173) +- Add logo, and sidebar with menus (#167) +- Add a readColour param to the runComplete event. (#153) +- Add CORS headers to Webpack Dev Server (#152) +- Save a user's code when they log in (#142) + ### Changed -- Versioned deployments of the UI (editor-ui#140) +- Versioned deployments of the UI (#140) +- Fix up eslint linting errors (#175) +- Use nginx buildpack on heroku instead of nodejs (#156, #166) +- Use the `PUBLIC_URL` env var to set URLs for the various bundles, shims, replacing `REACT_APP_S3_BUCKET` to allow assets to be served from sub directories in our S3 bucket. (#154) +- Style of the editor pane #145 + +### Fixed +- Made "stopping" button only appear after 100ms timeout to stop it flashing (#172) +- Fix input span disabling in webcomponent (#172) +- Fix syntax highlight colours in codemirror 6 (#134) ## [0.2.0] ### Added -- Mission Zero handover docs (editor-ui#128) +- Mission Zero handover docs (#128) - S3 deployment GH action ### Changed -- Upgrade to CodeMirror 6 (editor-ui#131, editor-ui#133) +- Upgrade to CodeMirror 6 (#131, #133) ### Fixed -- Whitespace handling in Firefox (editor-ui#132) +- Whitespace handling in Firefox (#132) - Stopwatch hook so PythonRunner doesn't get stuck resetting timer (e7b747053) ## [0.1.0] ### Added -- Events in Web Component indicating whether Mission Zero criteria have been met (editor-ui#113) +- Events in Web Component indicating whether Mission Zero criteria have been met (#113) [Unreleased]: https://github.com/RaspberryPiFoundation/editor-ui/compare/v0.3.0...HEAD [0.1.0]: https://github.com/RaspberryPiFoundation/editor-ui/releases/tag/v0.1.0 From 718be62732c13b798c26b836a3005e747fb51cfa Mon Sep 17 00:00:00 2001 From: "Patrick J. Cherry" Date: Mon, 5 Sep 2022 11:55:22 +0100 Subject: [PATCH 3/3] Remove `v` from versison in package.json --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index b70a33029..7f430f2b0 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@raspberrypifoundation/editor-ui", - "version": "v0.3.0", + "version": "0.3.0", "private": true, "dependencies": { "@babel/core": "^7.17.10",