Skip to content

Commit f37da98

Browse files
committed
Publish 0.1.0a3
SHA256 hashes: jupyterlab-lego-boost-0.1.0-a3.tgz: 97974c1fb2251a4b13c36ca13d50457f6eeea2e8b0e0f003aa1d13f64894b570 jupyterlab_lego_boost-0.1.0a3-py3-none-any.whl: 595e267f857ba734c930be9ddbbe0fc35fdc19401100fa3bb409ca3c6ce3be56 jupyterlab_lego_boost-0.1.0a3.tar.gz: 67c3051ddb246635ed47b7adad4d69ca5cbef00aecfb52a93ecbe7f3a6b5e958
1 parent 9d2afc7 commit f37da98

File tree

2 files changed

+113
-94
lines changed

2 files changed

+113
-94
lines changed

CHANGELOG.md

Lines changed: 21 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,27 @@
22

33
<!-- <START NEW CHANGELOG ENTRY> -->
44

5+
## 0.1.0a3
6+
7+
([Full Changelog](https://github.com/jupyter-robotics/jupyterlab-lego-boost/compare/c8ffd43bf88614968b93a3581132c2bf0e875ca5...9d2afc741c865177373118f9d3b462c89d95c5d0))
8+
9+
### Enhancements made
10+
11+
- Upgrade to `v0.3.2` of `jupyterlab-blockly` [#17](https://github.com/jupyter-robotics/jupyterlab-lego-boost/pull/17) ([@DenisaCG](https://github.com/DenisaCG))
12+
13+
### Maintenance and upkeep improvements
14+
15+
- Update repository links for new organisation [#18](https://github.com/jupyter-robotics/jupyterlab-lego-boost/pull/18) ([@DenisaCG](https://github.com/DenisaCG))
16+
- Upgrade to `v0.3.2` of `jupyterlab-blockly` [#17](https://github.com/jupyter-robotics/jupyterlab-lego-boost/pull/17) ([@DenisaCG](https://github.com/DenisaCG))
17+
18+
### Contributors to this release
19+
20+
([GitHub contributors page for this release](https://github.com/jupyter-robotics/jupyterlab-lego-boost/graphs/contributors?from=2024-08-21&to=2024-08-22&type=c))
21+
22+
[@DenisaCG](https://github.com/search?q=repo%3Ajupyter-robotics%2Fjupyterlab-lego-boost+involves%3ADenisaCG+updated%3A2024-08-21..2024-08-22&type=Issues) | [@github-actions](https://github.com/search?q=repo%3Ajupyter-robotics%2Fjupyterlab-lego-boost+involves%3Agithub-actions+updated%3A2024-08-21..2024-08-22&type=Issues)
23+
24+
<!-- <END NEW CHANGELOG ENTRY> -->
25+
526
## 0.1.0a2
627

728
([Full Changelog](https://github.com/QuantStack/jupyterlab-lego-boost/compare/35d9882aef31adaad1d4ca9dcdfee9318db6dc24...0f75182a3c24e7edb9fe86ef0b5095f3e842700e))
@@ -36,8 +57,6 @@
3657

3758
[@DenisaCG](https://github.com/search?q=repo%3AQuantStack%2Fjupyterlab-lego-boost+involves%3ADenisaCG+updated%3A2022-08-15..2023-01-12&type=Issues) | [@github-actions](https://github.com/search?q=repo%3AQuantStack%2Fjupyterlab-lego-boost+involves%3Agithub-actions+updated%3A2022-08-15..2023-01-12&type=Issues) | [@hbcarlos](https://github.com/search?q=repo%3AQuantStack%2Fjupyterlab-lego-boost+involves%3Ahbcarlos+updated%3A2022-08-15..2023-01-12&type=Issues)
3859

39-
<!-- <END NEW CHANGELOG ENTRY> -->
40-
4160
## 0.1.0a1
4261

4362
([Full Changelog](https://github.com/QuantStack/jupyterlab-lego-boost/compare/35d9882aef31adaad1d4ca9dcdfee9318db6dc24...1b6b4d6e3f20876af9ad97d77c74d3d7823cb447))

package.json

Lines changed: 92 additions & 92 deletions
Original file line numberDiff line numberDiff line change
@@ -1,94 +1,94 @@
11
{
2-
"name": "jupyterlab-lego-boost",
3-
"version": "0.1.0-a2",
4-
"description": "Blockly extension for JupyterLab to control the Lego Boost",
5-
"keywords": [
6-
"jupyter",
7-
"jupyterlab",
8-
"jupyterlab-extension",
9-
"Lego Boost",
10-
"robot",
11-
"Boost"
12-
],
13-
"homepage": "https://github.com/jupyter-robotics/jupyterlab-lego-boost",
14-
"bugs": {
15-
"url": "https://github.com/jupyter-robotics/jupyterlab-lego-boost/issues"
16-
},
17-
"license": "BSD-3-Clause",
18-
"author": {
19-
"name": "Denisa Checiu",
20-
"email": "denisa.checiu@quantstack.net"
21-
},
22-
"files": [
23-
"lib/**/*.{d.ts,eot,gif,html,jpg,js,js.map,json,png,svg,woff2,ttf}",
24-
"style/**/*.{css,js,eot,gif,html,jpg,json,png,svg,woff2,ttf}"
25-
],
26-
"main": "lib/index.js",
27-
"types": "lib/index.d.ts",
28-
"style": "style/index.css",
29-
"repository": {
30-
"type": "git",
31-
"url": "https://github.com/jupyter-robotics/jupyterlab-lego-boost.git"
32-
},
33-
"scripts": {
34-
"build": "jlpm build:lib && jlpm build:labextension:dev",
35-
"build:prod": "jlpm clean && jlpm build:lib:prod && jlpm build:labextension",
36-
"build:labextension": "jupyter labextension build .",
37-
"build:labextension:dev": "jupyter labextension build --development True .",
38-
"build:lib": "tsc --sourceMap",
39-
"build:lib:prod": "tsc",
40-
"clean": "jlpm clean:lib",
41-
"clean:lib": "rimraf lib tsconfig.tsbuildinfo",
42-
"clean:lintcache": "rimraf .eslintcache .stylelintcache",
43-
"clean:labextension": "rimraf jupyterlab_lego_boost/labextension",
44-
"clean:all": "jlpm clean:lib && jlpm clean:labextension && jlpm clean:lintcache",
45-
"eslint": "jlpm eslint:check --fix",
46-
"eslint:check": "eslint . --cache --ext .ts,.tsx",
47-
"install:extension": "jlpm build",
48-
"lint": "jlpm stylelint && jlpm prettier && jlpm eslint",
49-
"lint:check": "jlpm stylelint:check && jlpm prettier:check && jlpm eslint:check",
50-
"prettier": "jlpm prettier:base --write --list-different",
51-
"prettier:base": "prettier \"**/*{.ts,.tsx,.js,.jsx,.css,.json,.md}\"",
52-
"prettier:check": "jlpm prettier:base --check",
53-
"stylelint": "jlpm stylelint:check --fix",
54-
"stylelint:check": "stylelint --cache \"style/**/*.css\"",
55-
"watch": "run-p watch:src watch:labextension",
56-
"watch:src": "tsc -w --sourceMap",
57-
"watch:labextension": "jupyter labextension watch ."
58-
},
59-
"dependencies": {
60-
"@jupyterlab/application": "^4.2",
61-
"blockly": "^11.0",
62-
"jupyterlab-blockly": "^0.3.2"
63-
},
64-
"devDependencies": {
65-
"@jupyterlab/builder": "^4.2.4",
66-
"@typescript-eslint/eslint-plugin": "^5.12.1",
67-
"@typescript-eslint/parser": "^5.12.1",
68-
"eslint": "^8.9.0",
69-
"eslint-config-prettier": "^8.4.0",
70-
"eslint-plugin-prettier": "^4.0.0",
71-
"npm-run-all": "^4.1.5",
72-
"prettier": "^2.5.1",
73-
"rimraf": "^3.0.2",
74-
"stylelint": "^14.3.0",
75-
"stylelint-config-prettier": "^9.0.3",
76-
"stylelint-config-recommended": "^6.0.0",
77-
"stylelint-config-standard": "~24.0.0",
78-
"stylelint-prettier": "^2.0.0",
79-
"typescript": "~5.0.2"
80-
},
81-
"sideEffects": [
82-
"style/*.css",
83-
"style/index.js"
84-
],
85-
"styleModule": "style/index.js",
86-
"publishConfig": {
87-
"access": "public"
88-
},
89-
"jupyterlab": {
90-
"extension": true,
91-
"outputDir": "jupyterlab_lego_boost/labextension",
92-
"webpackConfig": "./webpack.config.js"
93-
}
2+
"name": "jupyterlab-lego-boost",
3+
"version": "0.1.0-a3",
4+
"description": "Blockly extension for JupyterLab to control the Lego Boost",
5+
"keywords": [
6+
"jupyter",
7+
"jupyterlab",
8+
"jupyterlab-extension",
9+
"Lego Boost",
10+
"robot",
11+
"Boost"
12+
],
13+
"homepage": "https://github.com/jupyter-robotics/jupyterlab-lego-boost",
14+
"bugs": {
15+
"url": "https://github.com/jupyter-robotics/jupyterlab-lego-boost/issues"
16+
},
17+
"license": "BSD-3-Clause",
18+
"author": {
19+
"name": "Denisa Checiu",
20+
"email": "denisa.checiu@quantstack.net"
21+
},
22+
"files": [
23+
"lib/**/*.{d.ts,eot,gif,html,jpg,js,js.map,json,png,svg,woff2,ttf}",
24+
"style/**/*.{css,js,eot,gif,html,jpg,json,png,svg,woff2,ttf}"
25+
],
26+
"main": "lib/index.js",
27+
"types": "lib/index.d.ts",
28+
"style": "style/index.css",
29+
"repository": {
30+
"type": "git",
31+
"url": "https://github.com/jupyter-robotics/jupyterlab-lego-boost.git"
32+
},
33+
"scripts": {
34+
"build": "jlpm build:lib && jlpm build:labextension:dev",
35+
"build:prod": "jlpm clean && jlpm build:lib:prod && jlpm build:labextension",
36+
"build:labextension": "jupyter labextension build .",
37+
"build:labextension:dev": "jupyter labextension build --development True .",
38+
"build:lib": "tsc --sourceMap",
39+
"build:lib:prod": "tsc",
40+
"clean": "jlpm clean:lib",
41+
"clean:lib": "rimraf lib tsconfig.tsbuildinfo",
42+
"clean:lintcache": "rimraf .eslintcache .stylelintcache",
43+
"clean:labextension": "rimraf jupyterlab_lego_boost/labextension",
44+
"clean:all": "jlpm clean:lib && jlpm clean:labextension && jlpm clean:lintcache",
45+
"eslint": "jlpm eslint:check --fix",
46+
"eslint:check": "eslint . --cache --ext .ts,.tsx",
47+
"install:extension": "jlpm build",
48+
"lint": "jlpm stylelint && jlpm prettier && jlpm eslint",
49+
"lint:check": "jlpm stylelint:check && jlpm prettier:check && jlpm eslint:check",
50+
"prettier": "jlpm prettier:base --write --list-different",
51+
"prettier:base": "prettier \"**/*{.ts,.tsx,.js,.jsx,.css,.json,.md}\"",
52+
"prettier:check": "jlpm prettier:base --check",
53+
"stylelint": "jlpm stylelint:check --fix",
54+
"stylelint:check": "stylelint --cache \"style/**/*.css\"",
55+
"watch": "run-p watch:src watch:labextension",
56+
"watch:src": "tsc -w --sourceMap",
57+
"watch:labextension": "jupyter labextension watch ."
58+
},
59+
"dependencies": {
60+
"@jupyterlab/application": "^4.2",
61+
"blockly": "^11.0",
62+
"jupyterlab-blockly": "^0.3.2"
63+
},
64+
"devDependencies": {
65+
"@jupyterlab/builder": "^4.2.4",
66+
"@typescript-eslint/eslint-plugin": "^5.12.1",
67+
"@typescript-eslint/parser": "^5.12.1",
68+
"eslint": "^8.9.0",
69+
"eslint-config-prettier": "^8.4.0",
70+
"eslint-plugin-prettier": "^4.0.0",
71+
"npm-run-all": "^4.1.5",
72+
"prettier": "^2.5.1",
73+
"rimraf": "^3.0.2",
74+
"stylelint": "^14.3.0",
75+
"stylelint-config-prettier": "^9.0.3",
76+
"stylelint-config-recommended": "^6.0.0",
77+
"stylelint-config-standard": "~24.0.0",
78+
"stylelint-prettier": "^2.0.0",
79+
"typescript": "~5.0.2"
80+
},
81+
"sideEffects": [
82+
"style/*.css",
83+
"style/index.js"
84+
],
85+
"styleModule": "style/index.js",
86+
"publishConfig": {
87+
"access": "public"
88+
},
89+
"jupyterlab": {
90+
"extension": true,
91+
"outputDir": "jupyterlab_lego_boost/labextension",
92+
"webpackConfig": "./webpack.config.js"
93+
}
9494
}

0 commit comments

Comments
 (0)