Skip to content

Commit

Permalink
bump julia version
Browse files Browse the repository at this point in the history
Signed-off-by: Andrey Parfenov <[email protected]>
  • Loading branch information
Andrey1994 committed Sep 30, 2024
1 parent e04a611 commit 1289f94
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
6 changes: 3 additions & 3 deletions julia_package/brainflow/Artifacts.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[brainflow]
git-tree-sha1 = "fc5e264369ce67547ec776a114da629d3f668454"
git-tree-sha1 = "cfb23a280c7f75e1ed21bace22c00d3a07d81454"
lazy = true

[[brainflow.download]]
sha256 = "22b36de5909d1edd77f17ddfac111f3f6a41ebd2f7defa935fe5a65ac6bce60f"
url = "https://github.com/brainflow-dev/brainflow/releases/download/5.13.3/compiled_libs.tar"
sha256 = "07be438a9a01edf560a3ec6c8db6b4c9c6e6f65d08a3b44afe81459f57c06bbb"
url = "https://github.com/brainflow-dev/brainflow/releases/download/5.14.0/compiled_libs.tar"
2 changes: 1 addition & 1 deletion julia_package/brainflow/Project.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
name = "BrainFlow"
uuid = "abd5acf9-0fc9-4730-984d-e27a37823580"
authors = ["Andrey1994 <[email protected]>"]
version = "5.13.3"
version = "5.14.0"

[deps]
JSON = "682c06a0-de6a-54ab-a142-c8b1cf79cde6"
Expand Down
2 changes: 1 addition & 1 deletion julia_package/brainflow/src/brainflow_url.jl
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# TODO: automatically generate by brainflow CICD
function brainflow_url()
url = "https://github.com/brainflow-dev/brainflow/releases/download/5.13.3/compiled_libs.tar"
url = "https://github.com/brainflow-dev/brainflow/releases/download/5.14.0/compiled_libs.tar"
return url
end

2 comments on commit 1289f94

@Andrey1994
Copy link
Member Author

Choose a reason for hiding this comment

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

@JuliaRegistrator register branch=master subdir=julia_package/brainflow

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

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 brainflow-v5.14.0 -m "<description of version>" 1289f94f87682705ea637ec8892ef74ef5580e16
git push origin brainflow-v5.14.0

Please sign in to comment.