Skip to content

Commit

Permalink
Bump Dictionaries compat (#44)
Browse files Browse the repository at this point in the history
  • Loading branch information
hellemo authored Jun 4, 2024
1 parent a8afb3e commit 91c9055
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 2 deletions.
8 changes: 8 additions & 0 deletions NEWS.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,14 @@
TimeStructures release notes
===================================

Version 0.7.3 (2024-06-04)
--------------------------
* Allow Dictionaries v0.4

Version 0.7.2 (2023-05-22)
--------------------------
* Migrate from SnoopPrecompile to PrecompileTools
* Add missing package names

Version 0.7.1 (2022-10-29)
--------------------------
Expand Down
4 changes: 2 additions & 2 deletions Project.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
name = "SparseVariables"
uuid = "2749762c-80ed-4b14-8f33-f0736679b02b"
authors = ["Truls Flatberg <[email protected]>", "Lars Hellemo <[email protected]>"]
version = "0.7.2"
version = "0.7.3"

[deps]
Dictionaries = "85a47980-9c8c-11e8-2b9f-f7ca1fa99fb4"
Expand All @@ -10,7 +10,7 @@ LinearAlgebra = "37e2e46d-f89d-539d-b4ee-838fcccc9c8e"
PrecompileTools = "aea7be01-6a6a-4083-8856-8a6e6704d82a"

[compat]
Dictionaries = "0.3"
Dictionaries = "0.4"
JuMP = "1.4.0"
PrecompileTools = "1"
julia = "1.6"

4 comments on commit 91c9055

@hellemo
Copy link
Member Author

@hellemo hellemo commented on 91c9055 Jun 4, 2024

Choose a reason for hiding this comment

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

@hellemo
Copy link
Member Author

@hellemo hellemo commented on 91c9055 Jun 4, 2024

Choose a reason for hiding this comment

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

@JuliaRegistrator register()

@hellemo
Copy link
Member Author

@hellemo hellemo commented on 91c9055 Jun 4, 2024

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/108220

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.7.3 -m "<description of version>" 91c90559c4a5a9f47a621891e1c160ae1d9a58b3
git push origin v0.7.3

Please sign in to comment.