diff --git a/CHANGELOG.md b/CHANGELOG.md index bacc05d1..08ecbe57 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,28 @@ +## 0.11.0 + +([Full Changelog](https://github.com/jupyterlab-contrib/jupyter-ui-toolkit/compare/@jupyter/react-components@0.10.1...1d655c9f8ec4566846a99b49844d613bb53171b5)) + +### Enhancements made + +- Add listbox component [#65](https://github.com/jupyterlab-contrib/jupyter-ui-toolkit/pull/65) ([@fcollonval](https://github.com/fcollonval)) +- Add anchor component [#64](https://github.com/jupyterlab-contrib/jupyter-ui-toolkit/pull/64) ([@fcollonval](https://github.com/fcollonval)) + +### Maintenance and upkeep improvements + +- Fix bump_version.py [#66](https://github.com/jupyterlab-contrib/jupyter-ui-toolkit/pull/66) ([@fcollonval](https://github.com/fcollonval)) +- Bump word-wrap from 1.2.3 to 1.2.4 [#62](https://github.com/jupyterlab-contrib/jupyter-ui-toolkit/pull/62) ([@dependabot](https://github.com/dependabot)) + +### Contributors to this release + +([GitHub contributors page for this release](https://github.com/jupyterlab-contrib/jupyter-ui-toolkit/graphs/contributors?from=2023-07-18&to=2023-07-27&type=c)) + +[@dependabot](https://github.com/search?q=repo%3Ajupyterlab-contrib%2Fjupyter-ui-toolkit+involves%3Adependabot+updated%3A2023-07-18..2023-07-27&type=Issues) | [@fcollonval](https://github.com/search?q=repo%3Ajupyterlab-contrib%2Fjupyter-ui-toolkit+involves%3Afcollonval+updated%3A2023-07-18..2023-07-27&type=Issues) | [@github-actions](https://github.com/search?q=repo%3Ajupyterlab-contrib%2Fjupyter-ui-toolkit+involves%3Agithub-actions+updated%3A2023-07-18..2023-07-27&type=Issues) + + + ## 0.10.1 ([Full Changelog](https://github.com/jupyterlab-contrib/jupyter-ui-toolkit/compare/v0.10.0...798a00a15d88ed289ecd80e7eaf7d627926e532e)) @@ -29,8 +51,6 @@ [@dependabot](https://github.com/search?q=repo%3Ajupyterlab-contrib%2Fjupyter-ui-toolkit+involves%3Adependabot+updated%3A2023-06-28..2023-07-18&type=Issues) | [@fcollonval](https://github.com/search?q=repo%3Ajupyterlab-contrib%2Fjupyter-ui-toolkit+involves%3Afcollonval+updated%3A2023-06-28..2023-07-18&type=Issues) | [@github-actions](https://github.com/search?q=repo%3Ajupyterlab-contrib%2Fjupyter-ui-toolkit+involves%3Agithub-actions+updated%3A2023-06-28..2023-07-18&type=Issues) - - ## 0.10.0 ([Full Changelog](https://github.com/jupyterlab-contrib/jupyter-ui-toolkit/compare/v0.9.1...d687dc2f1f656ac2e6782cf8ffc6edcbf6bcf6bb)) diff --git a/lerna.json b/lerna.json index c90b6041..4d922632 100644 --- a/lerna.json +++ b/lerna.json @@ -1,4 +1,4 @@ { "npmClient": "yarn", - "version": "0.10.1" + "version": "0.11.0" } diff --git a/package.json b/package.json index 7c9279dd..90bb6ad3 100644 --- a/package.json +++ b/package.json @@ -1,65 +1,65 @@ { - "name": "@jupyter/root-ui-toolkit", - "version": "0.10.1", - "private": true, - "description": "UI Toolkit for Jupyter", - "keywords": [ - "jupyter" - ], - "homepage": "https://jupyterlab-contrib.github.io/jupyter-ui-toolkit/", - "bugs": { - "url": "https://github.com/jupyterlab-contrib/jupyter-ui-toolkit/issues" - }, - "license": "BSD-3-Clause", - "author": { - "name": "Project Jupyter" - }, - "repository": { - "type": "git", - "url": "https://github.com/jupyterlab-contrib/jupyter-ui-toolkit.git" - }, - "workspaces": [ - "packages/*" - ], - "scripts": { - "build": "lerna run build", - "build:prod": "lerna run --scope @jupyter/web-components --scope @jupyter/react-components build && lerna run --scope jupyter-ui-demo build:prod", - "clean": "lerna run clean", - "format": "yarn stylelint && prettier --write \"**/*{.ts,.tsx,.js,.jsx,.css,.json,.md}\"", - "format:check": "yarn stylelint:check && prettier --list-different \"**/*{.ts,.tsx,.js,.jsx,.css,.json,.md}\"", - "lint": "lerna run eslint", - "lint:check": "lerna run eslint:check", - "stylelint": "yarn stylelint:check --fix", - "stylelint:check": "stylelint --cache \"packages/lab-example/style/**/*.css\"" - }, - "devDependencies": { - "@typescript-eslint/eslint-plugin": "^5.55.0", - "@typescript-eslint/parser": "^5.55.0", - "eslint": "^8.36.0", - "eslint-config-prettier": "^8.8.0", - "eslint-plugin-prettier": "^5.0.0", - "lerna": "^7.0.0", - "prettier": "^3.0.0", - "stylelint": "^15.10.1", - "stylelint-config-recommended": "^13.0.0", - "stylelint-config-standard": "^34.0.0", - "stylelint-prettier": "^4.0.0" - }, - "resolutions": { - "file-system-cache": "<2.4.0 || >2.4.0" - }, - "packageManager": "yarn@3.6.0", - "stylelint": { - "extends": [ - "stylelint-config-recommended", - "stylelint-config-standard", - "stylelint-prettier/recommended" + "name": "@jupyter/root-ui-toolkit", + "version": "0.11.0", + "private": true, + "description": "UI Toolkit for Jupyter", + "keywords": [ + "jupyter" ], - "rules": { - "property-no-vendor-prefix": null, - "selector-class-pattern": null, - "selector-no-vendor-prefix": null, - "value-no-vendor-prefix": null + "homepage": "https://jupyterlab-contrib.github.io/jupyter-ui-toolkit/", + "bugs": { + "url": "https://github.com/jupyterlab-contrib/jupyter-ui-toolkit/issues" + }, + "license": "BSD-3-Clause", + "author": { + "name": "Project Jupyter" + }, + "repository": { + "type": "git", + "url": "https://github.com/jupyterlab-contrib/jupyter-ui-toolkit.git" + }, + "workspaces": [ + "packages/*" + ], + "scripts": { + "build": "lerna run build", + "build:prod": "lerna run --scope @jupyter/web-components --scope @jupyter/react-components build && lerna run --scope jupyter-ui-demo build:prod", + "clean": "lerna run clean", + "format": "yarn stylelint && prettier --write \"**/*{.ts,.tsx,.js,.jsx,.css,.json,.md}\"", + "format:check": "yarn stylelint:check && prettier --list-different \"**/*{.ts,.tsx,.js,.jsx,.css,.json,.md}\"", + "lint": "lerna run eslint", + "lint:check": "lerna run eslint:check", + "stylelint": "yarn stylelint:check --fix", + "stylelint:check": "stylelint --cache \"packages/lab-example/style/**/*.css\"" + }, + "devDependencies": { + "@typescript-eslint/eslint-plugin": "^5.55.0", + "@typescript-eslint/parser": "^5.55.0", + "eslint": "^8.36.0", + "eslint-config-prettier": "^8.8.0", + "eslint-plugin-prettier": "^5.0.0", + "lerna": "^7.0.0", + "prettier": "^3.0.0", + "stylelint": "^15.10.1", + "stylelint-config-recommended": "^13.0.0", + "stylelint-config-standard": "^34.0.0", + "stylelint-prettier": "^4.0.0" + }, + "resolutions": { + "file-system-cache": "<2.4.0 || >2.4.0" + }, + "packageManager": "yarn@3.6.0", + "stylelint": { + "extends": [ + "stylelint-config-recommended", + "stylelint-config-standard", + "stylelint-prettier/recommended" + ], + "rules": { + "property-no-vendor-prefix": null, + "selector-class-pattern": null, + "selector-no-vendor-prefix": null, + "value-no-vendor-prefix": null + } } - } } diff --git a/packages/components/package.json b/packages/components/package.json index 3ed10ad9..709cc253 100644 --- a/packages/components/package.json +++ b/packages/components/package.json @@ -1,6 +1,6 @@ { "name": "@jupyter/web-components", - "version": "0.10.1", + "version": "0.11.0", "description": "A component library for building extensions in Jupyter frontends.", "homepage": "https://github.com/jupyterlab-contrib/jupyter-ui-toolkit#readme", "license": "BSD-3-Clause", diff --git a/packages/lab-example/package.json b/packages/lab-example/package.json index 25608784..dff5ca06 100644 --- a/packages/lab-example/package.json +++ b/packages/lab-example/package.json @@ -1,6 +1,6 @@ { "name": "jupyter-ui-demo", - "version": "0.10.1", + "version": "0.11.0", "description": "A JupyterLab extension to present an artwork of available UI components", "private": true, "keywords": [ @@ -48,8 +48,8 @@ "watch:labextension": "jupyter labextension watch ." }, "dependencies": { - "@jupyter/react-components": "^0.10.1", - "@jupyter/web-components": "^0.10.1", + "@jupyter/react-components": "^0.11.0", + "@jupyter/web-components": "^0.11.0", "@jupyterlab/application": "^3.1.0 || ^4.0.0", "@jupyterlab/apputils": "^3.0.0 || ^4.0.0", "@lumino/messaging": "^1.10.1 || ^2.0.0", diff --git a/packages/react-components/package.json b/packages/react-components/package.json index f196da1d..83baa95c 100644 --- a/packages/react-components/package.json +++ b/packages/react-components/package.json @@ -1,6 +1,6 @@ { "name": "@jupyter/react-components", - "version": "0.10.1", + "version": "0.11.0", "description": "A component library for building extensions in Jupyter frontends.", "homepage": "https://github.com/jupyterlab-contrib/jupyter-ui-toolkit#readme", "license": "BSD-3-Clause", @@ -32,7 +32,7 @@ "prepublishOnly": "rimraf README.md && cp ../../README.md . && yarn run build" }, "dependencies": { - "@jupyter/web-components": "^0.10.1", + "@jupyter/web-components": "^0.11.0", "@microsoft/fast-react-wrapper": "^0.3.18", "react": ">=17.0.0 <19.0.0" }, diff --git a/yarn.lock b/yarn.lock index b82b1c95..8a469628 100644 --- a/yarn.lock +++ b/yarn.lock @@ -2464,11 +2464,11 @@ __metadata: languageName: node linkType: hard -"@jupyter/react-components@^0.10.1, @jupyter/react-components@workspace:packages/react-components": +"@jupyter/react-components@^0.11.0, @jupyter/react-components@workspace:packages/react-components": version: 0.0.0-use.local resolution: "@jupyter/react-components@workspace:packages/react-components" dependencies: - "@jupyter/web-components": ^0.10.1 + "@jupyter/web-components": ^0.11.0 "@microsoft/fast-react-wrapper": ^0.3.18 "@types/react": ^18.2.0 "@typescript-eslint/eslint-plugin": ^5.60.0 @@ -2500,7 +2500,7 @@ __metadata: languageName: unknown linkType: soft -"@jupyter/web-components@^0.10.1, @jupyter/web-components@workspace:packages/components": +"@jupyter/web-components@^0.11.0, @jupyter/web-components@workspace:packages/components": version: 0.0.0-use.local resolution: "@jupyter/web-components@workspace:packages/components" dependencies: @@ -11974,8 +11974,8 @@ __metadata: version: 0.0.0-use.local resolution: "jupyter-ui-demo@workspace:packages/lab-example" dependencies: - "@jupyter/react-components": ^0.10.1 - "@jupyter/web-components": ^0.10.1 + "@jupyter/react-components": ^0.11.0 + "@jupyter/web-components": ^0.11.0 "@jupyterlab/application": ^3.1.0 || ^4.0.0 "@jupyterlab/apputils": ^3.0.0 || ^4.0.0 "@jupyterlab/builder": ^4.0.0