Skip to content

Commit

Permalink
Bump to 3.0.0-beta.0 (#42)
Browse files Browse the repository at this point in the history
* Bump to 3.0.0-beta.0

* Update CHANGELOG.md

Co-authored-by: Frédéric Collonval <[email protected]>
  • Loading branch information
fcollonval and Frédéric Collonval authored Apr 7, 2021
1 parent efe47fb commit 909cad7
Show file tree
Hide file tree
Showing 3 changed files with 18 additions and 4 deletions.
7 changes: 6 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,13 @@
# Changelog

## 3.0.0

- Port to JupyterLab 3 (#29)
- Fixes comment duplication when code mirror viewport is updated (#43)

## 2.1.0 (2021-04-05)

- Refactor code with latest @jupyterlab/git (more shared code) #39
- Refactor code with latest @jupyterlab/git (more shared code) (#39)

## 2.0.1 (2021-03-17)

Expand Down
10 changes: 9 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@

A JupyterLab extension for reviewing pull requests.

![](gifs/demo.gif)
![demo](https://raw.githubusercontent.com/jupyterlab/pull-requests/master/gifs/demo.gif)

For now, it supports GitHub and GitLab providers.

Expand Down Expand Up @@ -94,6 +94,14 @@ This extension as [server settings](http://jupyter-notebook.readthedocs.io/en/st
- **PRConfig.provider**: `github` (default) or `gitlab`
- **PRConfig.api_base_url**: Provider API base url (default to `https://api.github.com` except if provider is _gitlab_ then it defaults to `https://gitlab.com/api/v4/`)

## Troubleshooting

- If you are seeing the following error `[SSL: CERTIFICATE_VERIFY_FAILED] certificate verify failed: self signed certificate in certificate chain` and the certificates are installed on your machine, you will need to set the `SSL_CERT_FILE` environment variable to point to your system certificates bundle. For example:

```
export SSL_CERT_FILE=/etc/ssl/certs/ca-certificates.crt
```

## Development

### Contributing
Expand Down
5 changes: 3 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@jupyterlab/pullrequests",
"version": "3.0.0-alpha.0",
"version": "3.0.0-beta.0",
"description": "Pull Requests for JupyterLab",
"keywords": [
"jupyter",
Expand Down Expand Up @@ -71,7 +71,7 @@
"json-source-map": "^0.6.1",
"moment": "^2.24.0",
"nbdime": "^6.1.0-beta.1",
"nbdime-jupyterlab": "2.1.0-beta.1",
"nbdime-jupyterlab": "^2.1.0-beta.1",
"react": "^17.0.1",
"react-dom": "^17.0.1",
"react-spinners": "^0.5.12"
Expand Down Expand Up @@ -125,6 +125,7 @@
"outputDir": "jupyterlab_pullrequests/labextension",
"sharedPackages": {
"@jupyterlab/git": {
"bundled": false,
"singleton": true
},
"codemirror": {
Expand Down

0 comments on commit 909cad7

Please sign in to comment.