Skip to content

Commit

Permalink
Merge pull request jupyterlab#97 from ian-r-rose/v0.6.0
Browse files Browse the repository at this point in the history
Update to JupyterLab v0.35.
  • Loading branch information
ian-r-rose authored Oct 5, 2018
2 parents f85c59a + 60696fc commit 03f114d
Show file tree
Hide file tree
Showing 3 changed files with 20 additions and 16 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ For more advanced usage documentation, see [here](docs/advanced.md).

## Requirements

- JupyterLab 0.32
- JupyterLab 0.35
- Python >= 3.6
- An application that can compile `.tex` files to PDF (e.g., `pdflatex`, `xelatex`; use `pdflatex.exe` on Windows with MiKTeX). This application must be available as a command in the same environment as the notebook server.
- An application that can process `.bib` files for producing bibliographies. As with the LaTeX command, this must be available in the same environment as the notebook server.
Expand Down
4 changes: 4 additions & 0 deletions docs/changelog.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Changelog for `jupyterlab_latex`

- **0.6.0**:

- Fixed a bug where the PDF would try to open if the initial build failed.

- **0.4.1**:

- Allow SyncTeX to work on windows by using absolute file paths.
Expand Down
30 changes: 15 additions & 15 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@jupyterlab/latex",
"version": "0.5.0",
"version": "0.6.0",
"description": "JupyterLab extension for running LaTeX",
"author": "M Pacer & Ian Rose",
"files": [
Expand Down Expand Up @@ -34,42 +34,42 @@
"watch": "tsc -w"
},
"dependencies": {
"@jupyterlab/application": "^0.18.0",
"@jupyterlab/apputils": "^0.18.0",
"@jupyterlab/codeeditor": "^0.18.0",
"@jupyterlab/coreutils": "^2.1.0",
"@jupyterlab/docmanager": "^0.18.0",
"@jupyterlab/docregistry": "^0.18.0",
"@jupyterlab/fileeditor": "^0.18.0",
"@jupyterlab/services": "^3.1.0",
"@jupyterlab/application": "^0.19.1",
"@jupyterlab/apputils": "^0.19.1",
"@jupyterlab/codeeditor": "^0.19.1",
"@jupyterlab/coreutils": "^2.2.1",
"@jupyterlab/docmanager": "^0.19.1",
"@jupyterlab/docregistry": "^0.19.1",
"@jupyterlab/fileeditor": "^0.19.1",
"@jupyterlab/services": "^3.2.1",
"@phosphor/coreutils": "^1.3.0",
"@phosphor/disposable": "^1.1.2",
"@phosphor/domutils": "^1.1.2",
"@phosphor/messaging": "^1.2.2",
"@phosphor/widgets": "^1.6.0",
"pdfjs-dist": "2.0.104",
"react": "~16.2.0",
"react-dom": "~16.2.0"
"react": "~16.4.2",
"react-dom": "~16.4.2"
},
"devDependencies": {
"@types/pdfjs-dist": "^0.1.0",
"@types/react": "~16.0.19",
"@types/react-dom": "~16.0.5",
"@types/react": "~16.4.13",
"@types/react-dom": "~16.0.7",
"husky": "^0.14.3",
"lint-staged": "^7.2.0",
"prettier": "^1.13.7",
"rimraf": "^2.5.2",
"tslint": "^5.10.0",
"tslint-config-prettier": "^1.13.0",
"tslint-plugin-prettier": "^1.3.0",
"typescript": "~2.9.2"
"typescript": "~3.1.0"
},
"repository": {
"type": "git",
"url": "https://github.com/mpacer/jupyterlab-latex.git"
},
"resolutions": {
"@types/react": "~16.0.19"
"@types/react": "~16.4.13"
},
"lint-staged": {
"**/*{.ts,.tsx,.css,.json,.md}": [
Expand Down

0 comments on commit 03f114d

Please sign in to comment.