diff --git a/CHANGELOG.md b/CHANGELOG.md index 3100e60..c2f107d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,14 @@ # Change Log +## 0.1.0 +- Updates [Tree](./src/tree/README.md) component: + - Adds optional support for search in data backend implementation. + - Configures search behavior through `search.mode` in `CDTTreeProps`. + - Adds `searchChanged` notification from webview to host. + - Increases search text debounce from 300ms to 600ms. +- chore: Updated GitHub workflows to node 22. +- chore: Updated dependencies + ## 0.0.1 - Initial release of this package. - Adds [Tree](./src/tree/README.md) component. diff --git a/LICENSE b/LICENSE index e1c87b1..5198178 100644 --- a/LICENSE +++ b/LICENSE @@ -1,6 +1,6 @@ MIT License -Copyright 2024-2025 Arm Limited and EclipseSource +Copyright 2024-2026 Arm Limited and EclipseSource, and others Copyright 2017-2023 Marcel Ball and Arm Limited Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: diff --git a/package.json b/package.json index 2394e96..ea7392d 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@eclipse-cdt-cloud/vscode-ui-components", - "version": "0.0.1", + "version": "0.1.0", "description": "UI Components for Visual Studio Code Extensions", "repository": "https://github.com/eclipse-cdt-cloud/vscode-ui-components", "license": "MIT",