Skip to content

Commit

Permalink
Merge pull request #101 from jmejia8/develop
Browse files Browse the repository at this point in the history
fixed stale dependencies
  • Loading branch information
jmejia8 authored Jan 20, 2024
2 parents 2e2802f + f67b8dd commit 443b653
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 2 deletions.
11 changes: 10 additions & 1 deletion Project.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
name = "Metaheuristics"
uuid = "bcdb8e00-2c21-11e9-3065-2b553b22f898"
authors = ["Jesus Mejia <[email protected]>"]
version = "3.3.3"
version = "3.3.4"

[deps]
Distances = "b4f34e82-e78d-54a5-968a-f98e89d6e8f7"
Expand All @@ -17,12 +17,21 @@ SnoopPrecompile = "66db9d55-30c0-4569-8b51-7e840670fc0c"
Statistics = "10745b16-79ce-11e8-11f9-7d13ad32a3b2"

[compat]
Aqua = "^0.8"
Distances = "^0.10.7"
JMcDM = "^0.7.1"
LinearAlgebra = "1"
Pkg = "1"
Printf = "1"
Random = "1"
Reexport = "^1"
Requires = "1"
Statistics = "1"
SearchSpaces = "^0.2"
SnoopPrecompile = "1"
Test = "1"
UnicodePlots = "2.6, 3"

julia = "^1.7"

[extras]
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -164,5 +164,5 @@ in your scientific paper if you use `Metaheristics.jl`.
## Contributing


Please, be free to send me your PR, issue or any comment about this package for Julia.
Please feel free to send me your PR, issue or any comment about this package for Julia.

2 comments on commit 443b653

@jmejia8
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 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/99236

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 v3.3.4 -m "<description of version>" 443b653996178301296f119db93f883962083e37
git push origin v3.3.4

Please sign in to comment.