From 746ec99abc36d4559c021eca8fe7beb2f85c62de Mon Sep 17 00:00:00 2001 From: Jan Pfeifer Date: Sun, 7 Apr 2024 10:23:12 +0200 Subject: [PATCH] Bumping version to 0.10.0 --- Dockerfile | 4 ++-- docs/CHANGELOG.md | 4 +++- 2 files changed, 5 insertions(+), 3 deletions(-) diff --git a/Dockerfile b/Dockerfile index 56eaebb..5228742 100644 --- a/Dockerfile +++ b/Dockerfile @@ -29,8 +29,8 @@ RUN apt-get install --yes --no-install-recommends git ####################################################################################################### # Go and GoNB Libraries ####################################################################################################### -ENV GO_VERSION=1.22.0 -ENV GONB_VERSION="v0.9.6" +ENV GO_VERSION=1.22.2 +ENV GONB_VERSION="v0.10.0" ENV GOROOT=/usr/local/go ENV GOPATH=/opt/go ENV PATH=$PATH:$GOROOT/bin:$GOPATH/bin diff --git a/docs/CHANGELOG.md b/docs/CHANGELOG.md index feb6253..de9b773 100644 --- a/docs/CHANGELOG.md +++ b/docs/CHANGELOG.md @@ -1,6 +1,6 @@ # GoNB Changelog -## Next +## 0.10.0, 2024/04/07 Improvements on Plotly, VSCode support, interrupt handling and several minor fixes. * Added special cell commands ("magic"): * `%%writefile` to write contents of cell to file. See #103. Thanks @potoo0! @@ -12,6 +12,8 @@ * Added `plotly.AppendFig` that allows plotting to a transient area, or anywhere in the page. * Several minor fixes, see #106 * Added handling of SIGHUP and SIGTERM to handle a clean exit: and avoid leaking `gopls` daemons. +* Make sure SIGINT triggers an equivalent SIGINT on the child processes (it was not happening in VSCode). +* Added `docs/VSCode.md` with notes/info on running GoNB with Visual Studio Code. ## 0.9.6, 2024/02/18