Postmortem 1.1.2 (#77)

pull/79/head v1.1.3
Nicholas Bollweg 2021-11-30 10:25:51 -06:00 zatwierdzone przez GitHub
rodzic 0fd7fedc74
commit 3fed359b3f
Nie znaleziono w bazie danych klucza dla tego podpisu
ID klucza GPG: 4AEE18F83AFDEB23
13 zmienionych plików z 43 dodań i 17 usunięć

Wyświetl plik

@ -1,4 +1,4 @@
ibpangocairo-1.0-0 libpangocairo-1.0-0
libx11-xcb1 libx11-xcb1
libxcomposite1 libxcomposite1
libxcursor1 libxcursor1

Wyświetl plik

@ -29,6 +29,7 @@ def doit(*args):
doit("list", "--all", "--status") doit("list", "--all", "--status")
doit("-n4") doit("-n4")
doit()
doit("list", "--all", "--status") doit("list", "--all", "--status")
shutil.copy2(".binder/overrides.json", SETTINGS / "overrides.json") shutil.copy2(".binder/overrides.json", SETTINGS / "overrides.json")

Wyświetl plik

@ -2,6 +2,28 @@
## Unreleased ## Unreleased
---
## Releases
### ipydrawio 1.1.3
#### @deathbeds/ipydrawio 1.1.3
#### @deathbeds/ipydrawio-notebook 1.1.3
#### @deathbeds/ipydrawio-webpack 15.8.701
#### @deathbeds/ipydrawio-jupyter-templates 1.1.3
### ipydrawio-export 1.1.3
- revert to older PDF exporter for better robustness on binder, etc.
#### @deathbeds/ipydrawio-pdf 1.1.3
---
### ipydrawio 1.1.2 ### ipydrawio 1.1.2
#### @deathbeds/ipydrawio 1.1.2 #### @deathbeds/ipydrawio 1.1.2
@ -18,14 +40,15 @@
### ipydrawio-export 1.1.2 ### ipydrawio-export 1.1.2
#### @deathbeds/ipydrawio-pdf 1.1.2
- a `yarn.lock` is shipped to reduce provisioning time and increase - a `yarn.lock` is shipped to reduce provisioning time and increase
reproducibility reproducibility
- update to newer PDF exporter for better performance
#### @deathbeds/ipydrawio-pdf 1.1.2
[#72]: https://github.com/deathbeds/ipydrawio/issues/72 [#72]: https://github.com/deathbeds/ipydrawio/issues/72
## Releases ---
### ipydrawio 1.1.1 ### ipydrawio 1.1.1

Wyświetl plik

@ -63,6 +63,8 @@ doit dist
- [ ] start a release issue with a checklist (maybe like this one) - [ ] start a release issue with a checklist (maybe like this one)
- [ ] ensure the versions have been bumped (check with `doit test:integrity`) - [ ] ensure the versions have been bumped (check with `doit test:integrity`)
- [ ] ensure the CHANGELOG is up-to-date
- [ ] move the new release to the top of the stack
- [ ] validate on binder - [ ] validate on binder
- [ ] validate on ReadTheDocs - [ ] validate on ReadTheDocs
- [ ] wait for a successful build of `master` - [ ] wait for a successful build of `master`

Wyświetl plik

@ -1,5 +1,5 @@
{% set name = "ipydrawio" %} {% set name = "ipydrawio" %}
{% set version = "1.1.2" %} {% set version = "1.1.3" %}
{% set build_number = 0 %} {% set build_number = 0 %}

Wyświetl plik

@ -1,7 +1,7 @@
{ {
"LiteBuildConfig": { "LiteBuildConfig": {
"federated_extensions": [ "federated_extensions": [
"../py_packages/ipydrawio/dist/ipydrawio-1.1.2-py3-none-any.whl", "../py_packages/ipydrawio/dist/ipydrawio-1.1.3-py3-none-any.whl",
"https://github.com/conda-forge/releases/releases/download/noarch/bqplot-0.12.31-pyhd8ed1ab_0.tar.bz2/bqplot-0.12.31-pyhd8ed1ab_0.tar.bz2", "https://github.com/conda-forge/releases/releases/download/noarch/bqplot-0.12.31-pyhd8ed1ab_0.tar.bz2/bqplot-0.12.31-pyhd8ed1ab_0.tar.bz2",
"https://github.com/conda-forge/releases/releases/download/noarch/jupyterlab-tour-3.1.4-pyhd8ed1ab_0.tar.bz2/jupyterlab-tour-3.1.4-pyhd8ed1ab_0.tar.bz2", "https://github.com/conda-forge/releases/releases/download/noarch/jupyterlab-tour-3.1.4-pyhd8ed1ab_0.tar.bz2/jupyterlab-tour-3.1.4-pyhd8ed1ab_0.tar.bz2",
"https://github.com/conda-forge/releases/releases/download/noarch/jupyterlab_widgets-1.0.2-pyhd8ed1ab_0.tar.bz2/jupyterlab_widgets-1.0.2-pyhd8ed1ab_0.tar.bz2", "https://github.com/conda-forge/releases/releases/download/noarch/jupyterlab_widgets-1.0.2-pyhd8ed1ab_0.tar.bz2/jupyterlab_widgets-1.0.2-pyhd8ed1ab_0.tar.bz2",
@ -12,7 +12,7 @@
], ],
"ignore_sys_prefix": true, "ignore_sys_prefix": true,
"lite_dir": ".", "lite_dir": ".",
"output_archive": "../build/demo/ipydrawio-lite-1.1.2.tgz", "output_archive": "../build/demo/ipydrawio-lite-1.1.3.tgz",
"output_dir": "../build/demo" "output_dir": "../build/demo"
} }
} }

Wyświetl plik

@ -133,7 +133,7 @@ def task_setup():
yield dict( yield dict(
name="js:ipde", name="js:ipde",
file_dep=[P.IPDE_DIE2_PACKAGE_JSON], file_dep=[P.IPDE_DIE2_PACKAGE_JSON, P.YARN_INTEGRITY],
targets=[P.IPDE_DIE2_YARN_LOCK], targets=[P.IPDE_DIE2_YARN_LOCK],
actions=[ actions=[
CmdAction( CmdAction(

Wyświetl plik

@ -6,7 +6,7 @@
"homepage": "https://ipydrawio.rtfd.io", "homepage": "https://ipydrawio.rtfd.io",
"dependencies": { "dependencies": {
"@jupyterlab/application": "^3.1.0", "@jupyterlab/application": "^3.1.0",
"@deathbeds/ipydrawio": "^1.1.2" "@deathbeds/ipydrawio": "^1.1.3"
}, },
"description": "Jupyter Templates for IPyDrawio", "description": "Jupyter Templates for IPyDrawio",
"devDependencies": { "devDependencies": {
@ -55,5 +55,5 @@
}, },
"scripts": {}, "scripts": {},
"types": "lib/index.d.ts", "types": "lib/index.d.ts",
"version": "1.1.2" "version": "1.1.3"
} }

Wyświetl plik

@ -1,6 +1,6 @@
{ {
"name": "@deathbeds/ipydrawio-notebook", "name": "@deathbeds/ipydrawio-notebook",
"version": "1.1.2", "version": "1.1.3",
"bugs": { "bugs": {
"url": "https://github.com/deathbeds/ipydrawio/issues" "url": "https://github.com/deathbeds/ipydrawio/issues"
}, },
@ -8,7 +8,7 @@
"dependencies": { "dependencies": {
"@jupyterlab/application": "^3.1.0", "@jupyterlab/application": "^3.1.0",
"@jupyterlab/notebook": "^3.1.0", "@jupyterlab/notebook": "^3.1.0",
"@deathbeds/ipydrawio": "^1.1.2" "@deathbeds/ipydrawio": "^1.1.3"
}, },
"devDependencies": { "devDependencies": {
"@jupyterlab/builder": "^3.1.0", "@jupyterlab/builder": "^3.1.0",

Wyświetl plik

@ -4,14 +4,14 @@
"url": "https://github.com/deathbeds/ipydrawio/issues" "url": "https://github.com/deathbeds/ipydrawio/issues"
}, },
"homepage": "https://ipydrawio.rtfd.io", "homepage": "https://ipydrawio.rtfd.io",
"version": "1.1.2", "version": "1.1.3",
"dependencies": { "dependencies": {
"@jupyterlab/application": "^3.1.0" "@jupyterlab/application": "^3.1.0"
}, },
"devDependencies": { "devDependencies": {
"@jupyterlab/builder": "^3.1.0", "@jupyterlab/builder": "^3.1.0",
"typescript": "~4.2.3", "typescript": "~4.2.3",
"@deathbeds/ipydrawio": "^1.1.2" "@deathbeds/ipydrawio": "^1.1.3"
}, },
"files": [ "files": [
"{lib,schema,style,src}/**/*.{ts,tsx,eot,gif,html,jpg,js,js.map,json,png,svg,woff2,css}", "{lib,schema,style,src}/**/*.{ts,tsx,eot,gif,html,jpg,js,js.map,json,png,svg,woff2,css}",

Wyświetl plik

@ -75,5 +75,5 @@
"build:pre": "python scripts/schema.py" "build:pre": "python scripts/schema.py"
}, },
"types": "lib/index.d.ts", "types": "lib/index.d.ts",
"version": "1.1.2" "version": "1.1.3"
} }

Wyświetl plik

@ -56,7 +56,7 @@ include_package_data = True
zip_safe = False zip_safe = False
install_requires = install_requires =
ipydrawio >=1.1.2 ipydrawio >=1.1.3
jupyterlab ==3.* jupyterlab ==3.*
lxml lxml
pillow pillow

@ -1 +1 @@
Subproject commit 754f2c784d13535e38b14a11434d573a856a0fba Subproject commit d818ddf130cf1827b6089aa5a5d627bd3f7a183a