diff --git a/CHANGELOG.md b/CHANGELOG.md index 41e0099..da242e4 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,32 @@ # Change Log +## [1.0.8] + +### Enhancements +- **JSON Configuration & Syntax:** + - Added new keyword pairs: `warningif`, `inconsistentif`, `disableif`, `nosubmitif` to `edk2_vfr.conf.json` and `edk2_vfr.tmLanguage.json` for improved syntax highlighting and language support. πŸ†•βœ¨ + +### Bug Fixes +- **Typographical Errors:** + - Corrected misspelled words: `seeting` to `setting` and `Generationg` to `Generating`. πŸ“πŸ› οΈ + - Fixed a typo in the message: "c_cpp_properties.json points to wrong compile_commands.json". πŸ“πŸ”§ + +### Features +- **New Commands:** + - Introduced `edk2code.copyTreeData` command to copy tree data to clipboard in a formatted string. πŸ“‹πŸŒ³ +- **Clangd Support:** + - Added support for Clang compile commands in the workspace configuration. πŸ› οΈπŸ”§ + - Automatically updates `clangd` configuration with the correct `--compile-commands-dir` argument if `vscode-clangd` extension is installed. πŸ†•πŸ”„ + +### Code Quality +- **Refactoring & Cleanup:** + - Improved code readability by trimming redundant spaces and unifying function behavior. πŸ§ΌπŸ› οΈ + - Renamed `edksymbol.ts` to `edkSymbols.ts` for consistency. πŸ“‚πŸ—‚οΈ + +### Miscellaneous +- **Version Update:** + - Updated version in `package.json` from `1.0.7` to `1.0.8`. πŸš€πŸ†™ + All notable changes to the "edk2code" extension will be documented in this file. ## [1.0.7] diff --git a/package.json b/package.json index d26285a..3f16246 100644 --- a/package.json +++ b/package.json @@ -2,7 +2,7 @@ "name": "edk2code", "displayName": "Edk2code", "description": "EDK2 code support", - "version": "1.0.7", + "version": "1.0.8", "icon": "assets/icon.png", "publisher": "intel-corporation", "homepage": "https://github.com/intel/Edk2Code/wiki",