Skip to content
This repository has been archived by the owner on Feb 16, 2023. It is now read-only.

Commit

Permalink
Release 0.1.4
Browse files Browse the repository at this point in the history
  • Loading branch information
jtpio committed Jan 22, 2021
1 parent 23dd0cb commit 4627050
Show file tree
Hide file tree
Showing 15 changed files with 44 additions and 49 deletions.
7 changes: 3 additions & 4 deletions .bumpversion.cfg
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
[bumpversion]
current_version = 0, 1, 3, 'final', 0
current_version = 0, 1, 4, 'final', 0
commit = False
tag = False
parse = (?P<major>\d+)\,\ (?P<minor>\d+)\,\ (?P<patch>\d+)\,\ \'(?P<release>\S+)\'\,\ (?P<build>\d+)
serialize =
serialize =
{major}, {minor}, {patch}, '{release}', {build}
[bumpversion:part:release]
optional_value = final
values =
values =
alpha
beta
candidate
Expand All @@ -17,4 +17,3 @@ values =
[bumpversion:part:build]
[bumpversion:file:jupyterlab_classic/_version.py]
4 changes: 2 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ jobs:
- name: Checkout
uses: actions/checkout@v2
- name: Install node
uses: actions/setup-node@v1
uses: actions/setup-node@v2
with:
node-version: '14.x'
- name: Install Python
Expand Down Expand Up @@ -67,7 +67,7 @@ jobs:
- name: Checkout
uses: actions/checkout@v2
- name: Install node
uses: actions/setup-node@v1
uses: actions/setup-node@v2
with:
node-version: '14.x'
- name: Install Python
Expand Down
29 changes: 13 additions & 16 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ jobs:
- name: Checkout
uses: actions/checkout@v2
- name: Install node
uses: actions/setup-node@v1
uses: actions/setup-node@v2
with:
node-version: '14.x'
- name: Install Python
Expand Down Expand Up @@ -67,7 +67,7 @@ jobs:
- name: Checkout
uses: actions/checkout@v2
- name: Install node
uses: actions/setup-node@v1
uses: actions/setup-node@v2
with:
node-version: '14.x'
- name: Install Python
Expand Down Expand Up @@ -162,26 +162,23 @@ jobs:
mkdir dist/
cp ./tmp/jupyterlab-classic*.tar.gz ./tmp/jupyterlab_classic*.whl dist
ls dist
- name: Install node
uses: actions/setup-node@v1
with:
node-version: '14.x'
registry-url: 'https://registry.npmjs.org'
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: '3.x'
- name: Publish a Python distribution to PyPI
uses: pypa/gh-action-pypi-publish@master
with:
user: __token__
password: ${{ secrets.PYPI_API_TOKEN }}
skip_existing: true
- uses: actions/setup-node@v2
with:
node-version: '14.x'
registry-url: 'https://registry.npmjs.org'
- name: Publish to npm
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
run: |
echo "//registry.npmjs.org/:_authToken=${{ secrets.NPM_TOKEN }}" > ~/.npmrc
jlpm run lerna publish from-package --yes
npm config set //registry.npmjs.org/:_authToken ${NPM_TOKEN}
# jlpm
# jlpm run lerna publish from-package --yes --registry "//registry.npmjs.org/:_authToken=${NPM_TOKEN}"
- name: Get the current tag
id: current_tag
run: |
Expand All @@ -208,8 +205,8 @@ jobs:
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
tag_name: ${{ steps.current_tag.outputs.tag }}
release_name: ${{ steps.current_tag.outputs.tag }}
tag_name: ${{ github.ref }}
release_name: ${{ github.ref }}
body_path: CHANGELOG
# TODO: set to false?
draft: true
Expand Down
18 changes: 9 additions & 9 deletions app/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@jupyterlab-classic/app",
"version": "0.1.3",
"version": "0.1.4",
"private": true,
"scripts": {
"build": "webpack",
Expand All @@ -10,14 +10,14 @@
"watch": "webpack --watch"
},
"dependencies": {
"@jupyterlab-classic/application": "^0.1.3",
"@jupyterlab-classic/application-extension": "^0.1.3",
"@jupyterlab-classic/docmanager-extension": "^0.1.3",
"@jupyterlab-classic/help-extension": "^0.1.3",
"@jupyterlab-classic/notebook-extension": "^0.1.3",
"@jupyterlab-classic/terminal-extension": "^0.1.3",
"@jupyterlab-classic/tree-extension": "^0.1.3",
"@jupyterlab-classic/ui-components": "^0.1.3",
"@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/apputils-extension": "^3.0.0",
"@jupyterlab/codemirror-extension": "^3.0.0",
"@jupyterlab/completer-extension": "^3.0.0",
Expand Down
3 changes: 1 addition & 2 deletions buildutils/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@jupyterlab-classic/buildutils",
"version": "0.1.3",
"version": "0.1.4",
"private": true,
"description": "JupyterLab Classic - Build Utilities",
"homepage": "https://github.com/jtpio/jupyterlab-classic",
Expand Down Expand Up @@ -39,4 +39,3 @@
"rimraf": "~3.0.0"
}
}

2 changes: 1 addition & 1 deletion jupyterlab_classic/_version.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
])

# DO NOT EDIT THIS DIRECTLY! It is managed by bumpversion
version_info = VersionInfo(0, 1, 3, 'final', 0)
version_info = VersionInfo(0, 1, 4, 'final', 0)

_specifier_ = {'alpha': 'a', 'beta': 'b', 'candidate': 'rc', 'final': ''}

Expand Down
6 changes: 3 additions & 3 deletions packages/application-extension/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@jupyterlab-classic/application-extension",
"version": "0.1.3",
"version": "0.1.4",
"description": "JupyterLab Classic - Application Extension",
"homepage": "https://github.com/jtpio/jupyterlab-classic",
"bugs": {
Expand Down Expand Up @@ -39,8 +39,8 @@
"watch": "tsc -b --watch"
},
"dependencies": {
"@jupyterlab-classic/application": "^0.1.3",
"@jupyterlab-classic/ui-components": "^0.1.3",
"@jupyterlab-classic/application": "^0.1.4",
"@jupyterlab-classic/ui-components": "^0.1.4",
"@jupyterlab/application": "^3.0.0",
"@jupyterlab/apputils": "^3.0.0",
"@jupyterlab/codeeditor": "^3.0.0",
Expand Down
2 changes: 1 addition & 1 deletion packages/application/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@jupyterlab-classic/application",
"version": "0.1.3",
"version": "0.1.4",
"description": "JupyterLab Classic - Application",
"homepage": "https://github.com/jtpio/jupyterlab-classic",
"bugs": {
Expand Down
2 changes: 1 addition & 1 deletion packages/docmanager-extension/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@jupyterlab-classic/docmanager-extension",
"version": "0.1.3",
"version": "0.1.4",
"description": "JupyterLab Classic - Document Manager Extension",
"homepage": "https://github.com/jtpio/jupyterlab-classic",
"bugs": {
Expand Down
4 changes: 2 additions & 2 deletions packages/help-extension/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@jupyterlab-classic/help-extension",
"version": "0.1.3",
"version": "0.1.4",
"description": "JupyterLab Classic - Help Extension",
"homepage": "https://github.com/jtpio/jupyterlab-classic",
"bugs": {
Expand Down Expand Up @@ -39,7 +39,7 @@
"watch": "tsc -b --watch"
},
"dependencies": {
"@jupyterlab-classic/ui-components": "^0.1.3",
"@jupyterlab-classic/ui-components": "^0.1.4",
"@jupyterlab/application": "^3.0.0",
"@jupyterlab/apputils": "^3.0.0",
"@jupyterlab/mainmenu": "^3.0.0"
Expand Down
4 changes: 2 additions & 2 deletions packages/lab-extension/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@jupyterlab-classic/lab-extension",
"version": "0.1.3",
"version": "0.1.4",
"description": "JupyterLab Classic - Lab Extension",
"homepage": "https://github.com/jtpio/jupyterlab-classic",
"bugs": {
Expand Down Expand Up @@ -46,7 +46,7 @@
"watch:src": "tsc -w"
},
"dependencies": {
"@jupyterlab-classic/ui-components": "^0.1.3",
"@jupyterlab-classic/ui-components": "^0.1.4",
"@jupyterlab/application": "^3.0.0",
"@jupyterlab/apputils": "^3.0.0",
"@jupyterlab/coreutils": "^5.0.0",
Expand Down
4 changes: 2 additions & 2 deletions packages/notebook-extension/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@jupyterlab-classic/notebook-extension",
"version": "0.1.3",
"version": "0.1.4",
"description": "JupyterLab Classic - Notebook Extension",
"homepage": "https://github.com/jtpio/jupyterlab-classic",
"bugs": {
Expand Down Expand Up @@ -39,7 +39,7 @@
"watch": "tsc -b --watch"
},
"dependencies": {
"@jupyterlab-classic/application": "^0.1.3",
"@jupyterlab-classic/application": "^0.1.4",
"@jupyterlab/application": "^3.0.0",
"@jupyterlab/apputils": "^3.0.0",
"@jupyterlab/docmanager": "^3.0.0",
Expand Down
2 changes: 1 addition & 1 deletion packages/terminal-extension/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@jupyterlab-classic/terminal-extension",
"version": "0.1.3",
"version": "0.1.4",
"description": "JupyterLab Classic - Terminal Extension",
"homepage": "https://github.com/jtpio/jupyterlab-classic",
"bugs": {
Expand Down
4 changes: 2 additions & 2 deletions packages/tree-extension/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@jupyterlab-classic/tree-extension",
"version": "0.1.3",
"version": "0.1.4",
"description": "JupyterLab Classic - Tree Extension",
"homepage": "https://github.com/jtpio/jupyterlab-classic",
"bugs": {
Expand Down Expand Up @@ -39,7 +39,7 @@
"watch": "tsc -b --watch"
},
"dependencies": {
"@jupyterlab-classic/application": "^0.1.3",
"@jupyterlab-classic/application": "^0.1.4",
"@jupyterlab/application": "^3.0.0",
"@jupyterlab/apputils": "^3.0.0",
"@jupyterlab/coreutils": "^5.0.0",
Expand Down
2 changes: 1 addition & 1 deletion packages/ui-components/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@jupyterlab-classic/ui-components",
"version": "0.1.3",
"version": "0.1.4",
"description": "JupyterLab Classic - UI components",
"homepage": "https://github.com/jtpio/jupyterlab-classic",
"bugs": {
Expand Down

0 comments on commit 4627050

Please sign in to comment.