Release 0.1.5

This commit is contained in:
Jeremy Tuloup 2021-01-22 20:16:55 +01:00
parent edfdca8a21
commit 478fd70b7d
14 changed files with 35 additions and 31 deletions

View File

@ -1,5 +1,5 @@
[bumpversion]
current_version = 0, 1, 4, 'final', 0
current_version = 0, 1, 5, 'final', 0
commit = False
tag = False
parse = (?P<major>\d+)\,\ (?P<minor>\d+)\,\ (?P<patch>\d+)\,\ \'(?P<release>\S+)\'\,\ (?P<build>\d+)

View File

@ -173,6 +173,7 @@ jobs:
with:
user: __token__
password: ${{ secrets.PYPI_API_TOKEN }}
skip_existing: true
- name: Install Python
uses: actions/setup-python@v2
with:
@ -183,19 +184,22 @@ jobs:
python -m pip install -U jupyterlab~=3.0 jupyter_packaging~=0.7.9 pip
jlpm
jlpm run build
- uses: actions/setup-node@v2
with:
node-version: '14.x'
registry-url: 'https://registry.npmjs.org'
- uses: actions/download-artifact@v2
with:
name: pkgs ${{ github.run_number }}
path: ./pkgs
- uses: actions/setup-node@v2
with:
node-version: '14.x'
registry-url: 'https://registry.npmjs.org'
- name: Publish to npm
env:
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
run: |
jlpm config set registry https://registry.npmjs.org
npm config set //registry.npmjs.org/:_authToken ${NPM_TOKEN}
echo "//registry.npmjs.org/:_authToken=${{ secrets.NPM_TOKEN }}" > ~/.npmrc
cp ~/.npmrc .npmrc
jlpm release:npm --dist ./pkgs
- name: Get the current tag
id: current_tag

View File

@ -1,6 +1,6 @@
{
"name": "@jupyterlab-classic/app",
"version": "0.1.4",
"version": "0.1.5",
"private": true,
"scripts": {
"build": "webpack",
@ -10,14 +10,14 @@
"watch": "webpack --watch"
},
"dependencies": {
"@jupyterlab-classic/application": "^0.1.4",
"@jupyterlab-classic/application-extension": "^0.1.4",
"@jupyterlab-classic/docmanager-extension": "^0.1.4",
"@jupyterlab-classic/help-extension": "^0.1.4",
"@jupyterlab-classic/notebook-extension": "^0.1.4",
"@jupyterlab-classic/terminal-extension": "^0.1.4",
"@jupyterlab-classic/tree-extension": "^0.1.4",
"@jupyterlab-classic/ui-components": "^0.1.4",
"@jupyterlab-classic/application": "^0.1.5",
"@jupyterlab-classic/application-extension": "^0.1.5",
"@jupyterlab-classic/docmanager-extension": "^0.1.5",
"@jupyterlab-classic/help-extension": "^0.1.5",
"@jupyterlab-classic/notebook-extension": "^0.1.5",
"@jupyterlab-classic/terminal-extension": "^0.1.5",
"@jupyterlab-classic/tree-extension": "^0.1.5",
"@jupyterlab-classic/ui-components": "^0.1.5",
"@jupyterlab/apputils-extension": "^3.0.0",
"@jupyterlab/codemirror-extension": "^3.0.0",
"@jupyterlab/completer-extension": "^3.0.0",

View File

@ -1,6 +1,6 @@
{
"name": "@jupyterlab-classic/buildutils",
"version": "0.1.4",
"version": "0.1.5",
"private": true,
"description": "JupyterLab Classic - Build Utilities",
"homepage": "https://github.com/jtpio/jupyterlab-classic",

View File

@ -12,7 +12,7 @@ VersionInfo = namedtuple('VersionInfo', [
])
# DO NOT EDIT THIS DIRECTLY! It is managed by bumpversion
version_info = VersionInfo(0, 1, 4, 'final', 0)
version_info = VersionInfo(0, 1, 5, 'final', 0)
_specifier_ = {'alpha': 'a', 'beta': 'b', 'candidate': 'rc', 'final': ''}

View File

@ -1,6 +1,6 @@
{
"name": "@jupyterlab-classic/application-extension",
"version": "0.1.4",
"version": "0.1.5",
"description": "JupyterLab Classic - Application Extension",
"homepage": "https://github.com/jtpio/jupyterlab-classic",
"bugs": {
@ -39,8 +39,8 @@
"watch": "tsc -b --watch"
},
"dependencies": {
"@jupyterlab-classic/application": "^0.1.4",
"@jupyterlab-classic/ui-components": "^0.1.4",
"@jupyterlab-classic/application": "^0.1.5",
"@jupyterlab-classic/ui-components": "^0.1.5",
"@jupyterlab/application": "^3.0.0",
"@jupyterlab/apputils": "^3.0.0",
"@jupyterlab/codeeditor": "^3.0.0",

View File

@ -1,6 +1,6 @@
{
"name": "@jupyterlab-classic/application",
"version": "0.1.4",
"version": "0.1.5",
"description": "JupyterLab Classic - Application",
"homepage": "https://github.com/jtpio/jupyterlab-classic",
"bugs": {

View File

@ -1,6 +1,6 @@
{
"name": "@jupyterlab-classic/docmanager-extension",
"version": "0.1.4",
"version": "0.1.5",
"description": "JupyterLab Classic - Document Manager Extension",
"homepage": "https://github.com/jtpio/jupyterlab-classic",
"bugs": {

View File

@ -1,6 +1,6 @@
{
"name": "@jupyterlab-classic/help-extension",
"version": "0.1.4",
"version": "0.1.5",
"description": "JupyterLab Classic - Help Extension",
"homepage": "https://github.com/jtpio/jupyterlab-classic",
"bugs": {
@ -39,7 +39,7 @@
"watch": "tsc -b --watch"
},
"dependencies": {
"@jupyterlab-classic/ui-components": "^0.1.4",
"@jupyterlab-classic/ui-components": "^0.1.5",
"@jupyterlab/application": "^3.0.0",
"@jupyterlab/apputils": "^3.0.0",
"@jupyterlab/mainmenu": "^3.0.0"

View File

@ -1,6 +1,6 @@
{
"name": "@jupyterlab-classic/lab-extension",
"version": "0.1.4",
"version": "0.1.5",
"description": "JupyterLab Classic - Lab Extension",
"homepage": "https://github.com/jtpio/jupyterlab-classic",
"bugs": {
@ -46,7 +46,7 @@
"watch:src": "tsc -w"
},
"dependencies": {
"@jupyterlab-classic/ui-components": "^0.1.4",
"@jupyterlab-classic/ui-components": "^0.1.5",
"@jupyterlab/application": "^3.0.0",
"@jupyterlab/apputils": "^3.0.0",
"@jupyterlab/coreutils": "^5.0.0",

View File

@ -1,6 +1,6 @@
{
"name": "@jupyterlab-classic/notebook-extension",
"version": "0.1.4",
"version": "0.1.5",
"description": "JupyterLab Classic - Notebook Extension",
"homepage": "https://github.com/jtpio/jupyterlab-classic",
"bugs": {
@ -39,7 +39,7 @@
"watch": "tsc -b --watch"
},
"dependencies": {
"@jupyterlab-classic/application": "^0.1.4",
"@jupyterlab-classic/application": "^0.1.5",
"@jupyterlab/application": "^3.0.0",
"@jupyterlab/apputils": "^3.0.0",
"@jupyterlab/docmanager": "^3.0.0",

View File

@ -1,6 +1,6 @@
{
"name": "@jupyterlab-classic/terminal-extension",
"version": "0.1.4",
"version": "0.1.5",
"description": "JupyterLab Classic - Terminal Extension",
"homepage": "https://github.com/jtpio/jupyterlab-classic",
"bugs": {

View File

@ -1,6 +1,6 @@
{
"name": "@jupyterlab-classic/tree-extension",
"version": "0.1.4",
"version": "0.1.5",
"description": "JupyterLab Classic - Tree Extension",
"homepage": "https://github.com/jtpio/jupyterlab-classic",
"bugs": {
@ -39,7 +39,7 @@
"watch": "tsc -b --watch"
},
"dependencies": {
"@jupyterlab-classic/application": "^0.1.4",
"@jupyterlab-classic/application": "^0.1.5",
"@jupyterlab/application": "^3.0.0",
"@jupyterlab/apputils": "^3.0.0",
"@jupyterlab/coreutils": "^5.0.0",

View File

@ -1,6 +1,6 @@
{
"name": "@jupyterlab-classic/ui-components",
"version": "0.1.4",
"version": "0.1.5",
"description": "JupyterLab Classic - UI components",
"homepage": "https://github.com/jtpio/jupyterlab-classic",
"bugs": {