Skip to content

Commit

Permalink
release 0.72.8
Browse files Browse the repository at this point in the history
  • Loading branch information
jheinen committed Jul 14, 2023
1 parent 2f4a5e1 commit c5ce564
Show file tree
Hide file tree
Showing 5 changed files with 11 additions and 11 deletions.
8 changes: 4 additions & 4 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,10 @@ USER root
ENV JULIA_DEPOT_PATH=/opt/julia
# Julia dependencies
RUN apt-get update && apt-get install -my wget curl gnupg && \
wget https://julialang-s3.julialang.org/bin/linux/x64/1.8/julia-1.8.5-linux-x86_64.tar.gz && \
tar -xzvf julia-1.8.5-linux-x86_64.tar.gz && ls && \
cp -R julia-1.8.5/* /usr && \
rm -rf ${HOME}/julia-1.8.5*
wget https://julialang-s3.julialang.org/bin/linux/x64/1.9/julia-1.9.2-linux-x86_64.tar.gz && \
tar -xzvf julia-1.9.2-linux-x86_64.tar.gz && ls && \
cp -R julia-1.9.2/* /usr && \
rm -rf ${HOME}/julia-1.9.2*
# Show Julia where conda libraries are
RUN echo "push!(Libdl.DL_LOAD_PATH, \"${CONDA_DIR}/lib\")" >> /usr/etc/julia/juliarc.jl && \
# Create JULIA_DEPOT_PATH
Expand Down
4 changes: 2 additions & 2 deletions Project.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
name = "GR"
uuid = "28b8d3ca-fb5f-59d9-8090-bfdbd6d07a71"
author = ["Josef Heinen (@jheinen)"]
version = "0.72.7"
version = "0.72.8"

[deps]
Artifacts = "56f22d72-fd6d-98f1-02f0-08ddc0907c33"
Expand All @@ -27,7 +27,7 @@ p7zip_jll = "3f19e933-33d8-53b3-aaab-bd5110c3b7a0"

[compat]
DelimitedFiles = "1"
GR_jll = "=0.72.7"
GR_jll = "=0.72.8"
HTTP = "0.8, 0.9, 1"
JSON = "0.20, 0.21, 1"
Preferences = "1"
Expand Down
6 changes: 3 additions & 3 deletions build_tarballs.jl
Original file line number Diff line number Diff line change
Expand Up @@ -3,13 +3,13 @@
using BinaryBuilder

name = "GR"
version = v"0.72.7"
version = v"0.72.8"

# Collection of sources required to complete build
sources = [
GitSource("https://github.com/sciapp/gr.git", "d0758e25475bcbe3da796ef0290be9e2a942e87c"),
GitSource("https://github.com/sciapp/gr.git", "2e9d75e3e062ac2dc3e520456e4769901e24cd86"),
FileSource("https://github.com/sciapp/gr/releases/download/v$version/gr-$version.js",
"203269cc2dbce49536e54e7f0ece3542a8bd5bec4931b0937846a1e260e00312", "gr.js"),
"55b6d9144b251124c85c8e72627496543e7f83a5d9fb543011331eaf0c41ff2a", "gr.js"),
ArchiveSource("https://github.com/phracker/MacOSX-SDKs/releases/download/10.15/MacOSX10.14.sdk.tar.xz",
"0f03869f72df8705b832910517b47dd5b79eb4e160512602f593ed243b28715f")
]
Expand Down
2 changes: 1 addition & 1 deletion src/downloader.jl
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ using Tar
using Downloads
using p7zip_jll

const version = v"0.72.7"
const version = v"0.72.8"
const GR_UUID = UUID("28b8d3ca-fb5f-59d9-8090-bfdbd6d07a71")


Expand Down
2 changes: 1 addition & 1 deletion src/js.jl
Original file line number Diff line number Diff line change
Expand Up @@ -391,7 +391,7 @@ function ws_cb(webs)
end

const plutoisinit = Ref(false)
const jssource = Ref("https://gr-framework.org/downloads/gr-0.72.7.js")
const jssource = Ref("https://gr-framework.org/downloads/gr-0.72.8.js")

function init_pluto(source=jssource[]::String)
plutoisinit[] = true
Expand Down

2 comments on commit c5ce564

@jheinen
Copy link
Owner Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@JuliaRegistrator
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Registration pull request created: JuliaRegistries/General/87482

After the above pull request is merged, it is recommended that a tag is created on this repository for the registered package version.

This will be done automatically if the Julia TagBot GitHub Action is installed, or can be done manually through the github interface, or via:

git tag -a v0.72.8 -m "<description of version>" c5ce564d6dabe08bfc344dfe4eb4de1ffc747ef7
git push origin v0.72.8

Please sign in to comment.