Skip to content

Commit

Permalink
Bump version to 0.10.7, in preparation for release.
Browse files Browse the repository at this point in the history
  • Loading branch information
janpfeifer committed Jan 20, 2025
1 parent 2255c95 commit a6ecebf
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 4 deletions.
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ RUN echo "%apt-users ALL=(ALL) NOPASSWD: /usr/bin/apt update, /usr/bin/apt insta
#######################################################################################################
# Go and GoNB Libraries
#######################################################################################################
ARG GO_VERSION=1.23.2
ARG GO_VERSION=1.23.5
ENV GOROOT=/usr/local/go
ENV GOPATH=$HOME/go
ENV PATH=$PATH:$GOROOT/bin:$GOPATH/bin
Expand All @@ -71,7 +71,7 @@ RUN wget --quiet --output-document=- "https://go.dev/dl/go${GO_VERSION}.linux-am
&& go version

# Install GoNB (https://github.com/janpfeifer/gonb) in the user account
ARG GONB_VERSION="v0.10.6"
ARG GONB_VERSION="v0.10.7"
USER $NB_USER
WORKDIR ${HOME}
RUN export GOPROXY=direct && \
Expand Down
2 changes: 1 addition & 1 deletion docs/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# GoNB Changelog

## Next
## v0.10.7, 2025/01/20

* Improved `autostart` logic: it now requires being mounted as "readonly" under `/root/autostart`.
* Added `%version`, and environment variables `GONB_VERSION`, `GONB_GIT_COMMIT`.
Expand Down
1 change: 0 additions & 1 deletion internal/goexec/goplsclient/goplsclient.go
Original file line number Diff line number Diff line change
Expand Up @@ -249,7 +249,6 @@ func (c *Client) FileData(filePath string) (content *FileData, updated bool, err
updated = true
if !foundInFile && foundInCache {
// Remove notify removal.

delete(c.fileCache, filePath)
return
}
Expand Down

0 comments on commit a6ecebf

Please sign in to comment.