Skip to content

Commit

Permalink
release 0.73.8
Browse files Browse the repository at this point in the history
  • Loading branch information
jheinen committed Oct 14, 2024
1 parent 4097e4a commit ae999fb
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 8 deletions.
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.73.7"
version = "0.73.8"

[deps]
Artifacts = "56f22d72-fd6d-98f1-02f0-08ddc0907c33"
Expand All @@ -28,7 +28,7 @@ Qt6Wayland_jll = "e99dba38-086e-5de3-a5b1-6e4c66e897c3"
Artifacts = "1"
DelimitedFiles = "1"
Downloads = "1"
GR_jll = "=0.73.7"
GR_jll = "=0.73.8"
HTTP = "0.8, 0.9, 1"
JSON = "0.20, 0.21, 1"
Preferences = "1"
Expand Down
8 changes: 4 additions & 4 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.73.7"
version = v"0.73.8"

# Collection of sources required to complete build
sources = [
GitSource("https://github.com/sciapp/gr.git", "a8f4f0b867ad8e40e9a927d72e4ada571fdca461"),
GitSource("https://github.com/sciapp/gr.git", "23937754fa7c8e943cda49ff493f464dfa98f976"),
FileSource("https://github.com/sciapp/gr/releases/download/v$version/gr-$version.js",
"89a114eac7e96f0a32441da01e1929068aeaa286ad2ea22f923420cff8d4e2a4", "gr.js"),
"55c2bad5787304548a819de220cb32eeffed69466d3f3b1be69cb0ef35c4b6a5", "gr.js"),
ArchiveSource("https://github.com/phracker/MacOSX-SDKs/releases/download/10.15/MacOSX10.14.sdk.tar.xz",
"0f03869f72df8705b832910517b47dd5b79eb4e160512602f593ed243b28715f")
]
Expand Down Expand Up @@ -96,7 +96,7 @@ dependencies = [
Dependency("GLFW_jll"),
Dependency("JpegTurbo_jll"),
Dependency("libpng_jll"),
Dependency("Libtiff_jll"; compat="~4.5.1"),
Dependency("Libtiff_jll"; compat="4.7.0"),
Dependency("Pixman_jll"),
HostBuildDependency("Qt6Base_jll"),
Dependency("Qt6Base_jll"; compat="~6.7.1"), # Never allow upgrading more than the minor version without recompilation
Expand Down
2 changes: 1 addition & 1 deletion src/downloader.jl
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ using Tar
using Downloads
using p7zip_jll

const version = v"0.73.7"
const version = v"0.73.8"

"""
get_grdir()
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.73.7.js")
const jssource = Ref("https://gr-framework.org/downloads/gr-0.73.8.js")

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

2 comments on commit ae999fb

@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/117239

Tip: Release Notes

Did you know you can add release notes too? Just add markdown formatted text underneath the comment after the text
"Release notes:" and it will be added to the registry PR, and if TagBot is installed it will also be added to the
release that TagBot creates. i.e.

@JuliaRegistrator register

Release notes:

## Breaking changes

- blah

To add them here just re-invoke and the PR will be updated.

Tagging

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.73.8 -m "<description of version>" ae999fbe9aceeed8cfedc190a6fa26c3fc32ee4f
git push origin v0.73.8

Please sign in to comment.