Skip to content

Commit

Permalink
comment test
Browse files Browse the repository at this point in the history
  • Loading branch information
attdona committed Oct 17, 2024
1 parent 2bf2d22 commit 9227563
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 3 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,12 @@

- Improve server api.

- Improve message persistence logic.

- Configurable authenticated and anonymous connection modes.

- [#32](https://github.com/cardo-org/Rembus.jl/issues/32) Update for julia 1.11.

## 0.3.0 (2 July, 2024)

- HTTP api (GET for RPC, POST for Pub/Sub).
Expand Down
6 changes: 3 additions & 3 deletions test/runtests.jl
Original file line number Diff line number Diff line change
Expand Up @@ -205,9 +205,9 @@ const GROUP = get(ENV, "GROUP", "all")
@time @safetestset "unregister_authenticated" begin
include("security/test_unregister_authenticated.jl")
end
@time @safetestset "nocommands_authenticated" begin
include("security/test_nocommands_authenticated.jl")
end
# @time @safetestset "nocommands_authenticated" begin
# include("security/test_nocommands_authenticated.jl")
# end
end
if GROUP == "all" || GROUP == "future"
@time @safetestset "future" begin
Expand Down

2 comments on commit 9227563

@attdona
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()

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

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.4.0 -m "<description of version>" 92275639b0be8fc9768b6525f8e55b623d85b5ad
git push origin v0.4.0

Please sign in to comment.