Skip to content

Commit

Permalink
chore: modernize Project.toml (#105)
Browse files Browse the repository at this point in the history
Update Project.toml to include compat bounds for stdlibs.
  • Loading branch information
tanmaykm authored Jan 3, 2024
1 parent db8e957 commit 13d925a
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion Project.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,11 @@ Sockets = "6462fe0b-24de-5631-8697-dd941f90decc"
MbedTLS = "739be429-bea8-5141-9913-cc70e7f3736d"

[compat]
julia = "^1"
julia = "1.6"
Dates = "1.6"
DataStructures = "^0.18"
MbedTLS = "0.6.8, 0.7, 1"
Sockets = "1.6"

[extras]
Dates = "ade2ca70-3891-5945-98fb-dc099432e06a"
Expand Down

2 comments on commit 13d925a

@tanmaykm
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 updated: JuliaRegistries/General/98088

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 v2.1.0 -m "<description of version>" 13d925a08c92834d49a72925b72152ef70f3769f
git push origin v2.1.0

Also, note the warning: Version 2.1.0 skips over 2.0.0
This can be safely ignored. However, if you want to fix this you can do so. Call register() again after making the fix. This will update the Pull request.

Please sign in to comment.