Skip to content

Commit

Permalink
bump julia version
Browse files Browse the repository at this point in the history
Signed-off-by: Andrey Parfenov <a1994ndrey@gmail.com>
  • Loading branch information
Andrey1994 committed Jan 7, 2024
1 parent 4b494e2 commit e13abf8
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -228,7 +228,7 @@ jobs:
cd $env:GITHUB_WORKSPACE\java_package\brainflow
mvn -s $env:GITHUB_WORKSPACE\java_package\brainflow\settings.xml deploy -Dregistry=https://maven.pkg.github.com/brainflow-dev -Dtoken=$env:PUBLISH_TOKEN
cd $env:GITHUB_WORKSPACE\python_package
twine upload --skip-existing dist/*.whl --user Andrey1994 --password $env:PYPI_PASSWORD
twine upload --skip-existing dist/*.whl --user __token__ --password $env:PYPI_PASSWORD
cd $env:GITHUB_WORKSPACE\rust_package\brainflow
env:
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
Expand Down
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 = "a20c50563d06d085392cd6bf9a9313d25af2da88"
git-tree-sha1 = "2eb9256f59d1f18bd649b3b6d194806860763e27"
lazy = true

[[brainflow.download]]
sha256 = "4bb2079448fc10b6acca031f38b324a42688e5377c17a05637c12f3a69b638ca"
url = "https://github.com/brainflow-dev/brainflow/releases/download/5.10.2/compiled_libs.tar"
sha256 = "481751a9b689022f4fcb7cbff7dbd5222e761ff0747af41e5839570fe6806f61"
url = "https://github.com/brainflow-dev/brainflow/releases/download/5.11.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 <andrey@brainflow.org>"]
version = "5.10.2"
version = "5.11.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.10.2/compiled_libs.tar"
url = "https://github.com/brainflow-dev/brainflow/releases/download/5.11.0/compiled_libs.tar"
return url
end

2 comments on commit e13abf8

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

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.11.0 -m "<description of version>" e13abf8e5c800bcb539e4b75439acd435b81d6ed
git push origin brainflow-v5.11.0

Please sign in to comment.