From e022a904932fc20f7b552c971f2ccf42d8425ea9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Micha=C3=ABl=20Minelli?= <michael@minelli.me> Date: Tue, 12 Dec 2023 17:27:09 +0100 Subject: [PATCH] Prepare for v3.2.0 --- CHANGELOG.md | 14 +++++++++++++- NodeApp/package-lock.json | 4 ++-- NodeApp/package.json | 2 +- 3 files changed, 16 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index a832118..faa668e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -17,8 +17,20 @@ - No modifications / Keep major and minors versions in sync with all parts of the project --> +## 3.2.0 (???) -## 3.1.0 (???) +### ✨ Feature +- **AssignmentCheck**: Add linter for help improve the quality of the assignment (the linter will not throw errors but warnings) +- **CLI**: Add possibility to clone a repository at creation + +### 🤏 Minor change +- **Exercices**: Set names of students in exercise name in alphabetical order + +### 🐛 Bugfix +- **CLI**: Show a correct error message when the user is not logged into the Dojo server + + +## 3.1.0 (2023-12-06) ### 🔨 Internal / Developers - **Typescript**: Add linter (ESLint) diff --git a/NodeApp/package-lock.json b/NodeApp/package-lock.json index 348f49d..22d254c 100644 --- a/NodeApp/package-lock.json +++ b/NodeApp/package-lock.json @@ -1,12 +1,12 @@ { "name": "dojo_cli", - "version": "3.1.2", + "version": "3.2.0", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "dojo_cli", - "version": "3.1.2", + "version": "3.2.0", "license": "AGPLv3", "dependencies": { "ajv": "^8.12.0", diff --git a/NodeApp/package.json b/NodeApp/package.json index 1b72e69..9090367 100644 --- a/NodeApp/package.json +++ b/NodeApp/package.json @@ -1,7 +1,7 @@ { "name" : "dojo_cli", "description" : "CLI of the Dojo project", - "version" : "3.1.2", + "version" : "3.2.0", "license" : "AGPLv3", "author" : "Michaël Minelli <dojo@minelli.me>", "main" : "dist/app.js", -- GitLab