Skip to content

Commit

Permalink
Publish 0.3.0
Browse files Browse the repository at this point in the history
SHA256 hashes:

jupyterlite-javascript-kernel-0.3.0.tgz: 56a0505e0c2f25cf2c70e5914fc5206cc0b37e938851945eb572fa5fd85a4c3c

jupyterlite-javascript-kernel-extension-0.3.0.tgz: 08f3412ea17b61306f2e8517d20359e3c0b1cbafc74569818841e84c62e3363c

jupyterlite_javascript_kernel-0.3.0-py3-none-any.whl: 7753c172d3c8bd50d7e7c05d1b667c3fa5566f90d38bf1bdd160f9752e1746b7

jupyterlite_javascript_kernel-0.3.0.tar.gz: 39870efb4cdfe669b99552b4ad21a82f575691e4fdaf77b33bef04ec230889ff
  • Loading branch information
jtpio committed Mar 26, 2024
1 parent 0ec2e58 commit 18d2d1e
Show file tree
Hide file tree
Showing 5 changed files with 144 additions and 129 deletions.
19 changes: 17 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,23 @@

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

## 0.3.0

([Full Changelog](https://github.com/jupyterlite/javascript-kernel/compare/@jupyterlite/javascript-kernel-extension@0.3.0-alpha.1...0ec2e58c1ec85fefbb35109e8414f5a2ba97de80))

### Maintenance and upkeep improvements

- Update releaser workflows [#11](https://github.com/jupyterlite/javascript-kernel/pull/11) ([@jtpio](https://github.com/jtpio))
- Update `@jupyterlite` packages [#10](https://github.com/jupyterlite/javascript-kernel/pull/10) ([@jtpio](https://github.com/jtpio))

### Contributors to this release

([GitHub contributors page for this release](https://github.com/jupyterlite/javascript-kernel/graphs/contributors?from=2024-02-16&to=2024-03-26&type=c))

[@jtpio](https://github.com/search?q=repo%3Ajupyterlite%2Fjavascript-kernel+involves%3Ajtpio+updated%3A2024-02-16..2024-03-26&type=Issues)

<!-- <END NEW CHANGELOG ENTRY> -->

## 0.3.0a1

([Full Changelog](https://github.com/jupyterlite/javascript-kernel/compare/v0.3.0a0...24e8d7abb6bd51633233c5bbeac9d54a70e98047))
Expand All @@ -16,8 +33,6 @@

[@jtpio](https://github.com/search?q=repo%3Ajupyterlite%2Fjavascript-kernel+involves%3Ajtpio+updated%3A2024-02-15..2024-02-16&type=Issues)

<!-- <END NEW CHANGELOG ENTRY> -->

## 0.3.0a0

([Full Changelog](https://github.com/jupyterlite/javascript-kernel/compare/123a40c18f04b8aa22a86f2352366153e8ed1706...535e97b683a0fa127a936fbe07e05345794a3674))
Expand Down
2 changes: 1 addition & 1 deletion lerna.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"npmClient": "jlpm",
"version": "0.3.0-alpha.1",
"version": "0.3.0",
"useWorkspaces": true
}
246 changes: 123 additions & 123 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,129 +1,129 @@
{
"name": "@jupyterlite/javascript-kernel-root",
"private": true,
"version": "0.3.0-a1",
"description": "A JavaScript kernel for JupyterLite",
"keywords": [
"jupyter",
"jupyterlab",
"jupyterlab-extension"
"name": "@jupyterlite/javascript-kernel-root",
"private": true,
"version": "0.3.0",
"description": "A JavaScript kernel for JupyterLite",
"keywords": [
"jupyter",
"jupyterlab",
"jupyterlab-extension"
],
"homepage": "https://github.com/jupyterlite/javascript-kernel",
"bugs": {
"url": "https://github.com/jupyterlite/javascript-kernel/issues"
},
"license": "BSD-3-Clause",
"author": "JupyterLite Contributors",
"repository": {
"type": "git",
"url": "https://github.com/jupyterlite/javascript-kernel.git"
},
"workspaces": {
"packages": [
"packages/*"
]
},
"scripts": {
"build": "lerna run build",
"build:prod": "lerna run build:prod",
"build:test": "lerna run build:test",
"bump:js:version": "lerna version --no-push --force-publish --no-git-tag-version --yes",
"clean": "lerna run clean",
"install": "lerna bootstrap",
"install:dev": "yarn run build:prod && yarn run develop",
"install:extension": "jupyter labextension develop --overwrite .",
"eslint": "eslint . --ext .ts,.tsx --fix",
"eslint:check": "eslint . --ext .ts,.tsx",
"lint": "yarn run eslint && yarn run prettier",
"lint:check": "yarn run eslint:check && yarn run prettier:check",
"prettier": "prettier --write \"**/*{.ts,.tsx,.js,.jsx,.css,.json,.md}\"",
"prettier:check": "prettier --list-different \"**/*{.ts,.tsx,.js,.jsx,.css,.json,.md}\"",
"publish": "yarn run clean && yarn run build && lerna publish",
"test": "lerna run test",
"watch": "lerna run watch"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^6",
"@typescript-eslint/parser": "^6",
"eslint": "^8",
"eslint-config-prettier": "^8",
"eslint-plugin-prettier": "^5",
"lerna": "^6.4.1",
"prettier": "^3",
"rimraf": "^3.0.2"
},
"eslintIgnore": [
"node_modules",
"dist",
"coverage",
"**/*.d.ts"
],
"eslintConfig": {
"extends": [
"eslint:recommended",
"plugin:@typescript-eslint/eslint-recommended",
"plugin:@typescript-eslint/recommended",
"plugin:prettier/recommended"
],
"homepage": "https://github.com/jupyterlite/javascript-kernel",
"bugs": {
"url": "https://github.com/jupyterlite/javascript-kernel/issues"
"parser": "@typescript-eslint/parser",
"parserOptions": {
"project": "tsconfig.eslint.json",
"sourceType": "module"
},
"license": "BSD-3-Clause",
"author": "JupyterLite Contributors",
"repository": {
"type": "git",
"url": "https://github.com/jupyterlite/javascript-kernel.git"
},
"workspaces": {
"packages": [
"packages/*"
]
},
"scripts": {
"build": "lerna run build",
"build:prod": "lerna run build:prod",
"build:test": "lerna run build:test",
"bump:js:version": "lerna version --no-push --force-publish --no-git-tag-version --yes",
"clean": "lerna run clean",
"install": "lerna bootstrap",
"install:dev": "yarn run build:prod && yarn run develop",
"install:extension": "jupyter labextension develop --overwrite .",
"eslint": "eslint . --ext .ts,.tsx --fix",
"eslint:check": "eslint . --ext .ts,.tsx",
"lint": "yarn run eslint && yarn run prettier",
"lint:check": "yarn run eslint:check && yarn run prettier:check",
"prettier": "prettier --write \"**/*{.ts,.tsx,.js,.jsx,.css,.json,.md}\"",
"prettier:check": "prettier --list-different \"**/*{.ts,.tsx,.js,.jsx,.css,.json,.md}\"",
"publish": "yarn run clean && yarn run build && lerna publish",
"test": "lerna run test",
"watch": "lerna run watch"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^6",
"@typescript-eslint/parser": "^6",
"eslint": "^8",
"eslint-config-prettier": "^8",
"eslint-plugin-prettier": "^5",
"lerna": "^6.4.1",
"prettier": "^3",
"rimraf": "^3.0.2"
},
"eslintIgnore": [
"node_modules",
"dist",
"coverage",
"**/*.d.ts"
"plugins": [
"@typescript-eslint"
],
"eslintConfig": {
"extends": [
"eslint:recommended",
"plugin:@typescript-eslint/eslint-recommended",
"plugin:@typescript-eslint/recommended",
"plugin:prettier/recommended"
],
"parser": "@typescript-eslint/parser",
"parserOptions": {
"project": "tsconfig.eslint.json",
"sourceType": "module"
},
"plugins": [
"@typescript-eslint"
],
"rules": {
"@typescript-eslint/naming-convention": [
"error",
{
"selector": "interface",
"format": [
"PascalCase"
],
"custom": {
"regex": "^I[A-Z]",
"match": true
}
}
],
"@typescript-eslint/no-unused-vars": [
"warn",
{
"args": "none"
}
],
"@typescript-eslint/no-explicit-any": "off",
"@typescript-eslint/no-namespace": "off",
"@typescript-eslint/no-use-before-define": "off",
"@typescript-eslint/quotes": [
"error",
"single",
{
"avoidEscape": true,
"allowTemplateLiterals": false
}
],
"curly": [
"error",
"all"
],
"eqeqeq": "error",
"prefer-arrow-callback": "error"
"rules": {
"@typescript-eslint/naming-convention": [
"error",
{
"selector": "interface",
"format": [
"PascalCase"
],
"custom": {
"regex": "^I[A-Z]",
"match": true
}
}
},
"prettier": {
"singleQuote": true,
"trailingComma": "none",
"arrowParens": "avoid",
"endOfLine": "auto",
"overrides": [
{
"files": "package.json",
"options": {
"tabWidth": 4
}
}
]
],
"@typescript-eslint/no-unused-vars": [
"warn",
{
"args": "none"
}
],
"@typescript-eslint/no-explicit-any": "off",
"@typescript-eslint/no-namespace": "off",
"@typescript-eslint/no-use-before-define": "off",
"@typescript-eslint/quotes": [
"error",
"single",
{
"avoidEscape": true,
"allowTemplateLiterals": false
}
],
"curly": [
"error",
"all"
],
"eqeqeq": "error",
"prefer-arrow-callback": "error"
}
}
},
"prettier": {
"singleQuote": true,
"trailingComma": "none",
"arrowParens": "avoid",
"endOfLine": "auto",
"overrides": [
{
"files": "package.json",
"options": {
"tabWidth": 4
}
}
]
}
}
4 changes: 2 additions & 2 deletions packages/javascript-kernel-extension/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@jupyterlite/javascript-kernel-extension",
"version": "0.3.0-alpha.1",
"version": "0.3.0",
"description": "JupyterLite - JavaScript Kernel Extension",
"homepage": "https://github.com/jupyterlite/javascript-kernel",
"bugs": {
Expand Down Expand Up @@ -39,7 +39,7 @@
"watch:src": "tsc -w"
},
"dependencies": {
"@jupyterlite/javascript-kernel": "^0.3.0-alpha.1",
"@jupyterlite/javascript-kernel": "^0.3.0",
"@jupyterlite/kernel": "^0.2.1 || ^0.3.0",
"@jupyterlite/server": "^0.2.1 || ^0.3.0"
},
Expand Down
2 changes: 1 addition & 1 deletion packages/javascript-kernel/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@jupyterlite/javascript-kernel",
"version": "0.3.0-alpha.1",
"version": "0.3.0",
"description": "JupyterLite - JavaScript Kernel",
"homepage": "https://github.com/jupyterlite/javascript-kernel",
"bugs": {
Expand Down

0 comments on commit 18d2d1e

Please sign in to comment.