Skip to content

Commit

Permalink
Prep for v1.7.0 (#96)
Browse files Browse the repository at this point in the history
  • Loading branch information
odow authored Nov 11, 2023
1 parent 9e4c3df commit 7efbc94
Showing 1 changed file with 9 additions and 3 deletions.
12 changes: 9 additions & 3 deletions Project.toml
Original file line number Diff line number Diff line change
@@ -1,16 +1,22 @@
name = "PATHSolver"
uuid = "f5f7c340-0bb3-5c69-969a-41884d311d1b"
authors = ["Changhyun Kwon <[email protected]>", "Oscar Dowson <[email protected]>"]
version = "1.6.1"
version = "1.7.0"

[deps]
DataDeps = "124859b0-ceae-595e-8997-d05f6a7a8dfe"
Libdl = "8f399da3-3557-5675-b5ff-fb832c97cbdb"
MathOptInterface = "b8f27783-ece8-5eb3-8dc8-9495eed66fee"
SparseArrays = "2f01184e-e22b-5df5-ae63-d93ebab69eaf"
Test = "8dfed614-e22c-5e08-85e1-65c5234f0b40"

[compat]
DataDeps = "0.7"
MathOptInterface = "1.19"
SparseArrays = "<0.0.1, 1.6"
Test = "<0.0.1, 1.6"
julia = "1.6"

[extras]
Test = "8dfed614-e22c-5e08-85e1-65c5234f0b40"

[targets]
test = ["Test"]

2 comments on commit 7efbc94

@odow
Copy link
Collaborator Author

@odow odow commented on 7efbc94 Nov 11, 2023

Choose a reason for hiding this comment

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

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

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 v1.7.0 -m "<description of version>" 7efbc940dddcc48545222f4efc8a591c86b2f73a
git push origin v1.7.0

Please sign in to comment.