Skip to content

Commit

Permalink
Version 1.7.0 (#141)
Browse files Browse the repository at this point in the history
  • Loading branch information
fingolfin authored Nov 27, 2024
1 parent b290720 commit 5bda0b7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Project.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name = "OrderedCollections"
uuid = "bac558e1-5e72-5ebc-8fee-abe8a469f55d"
version = "1.6.4-DEV"
version = "1.7.0"

[compat]
julia = "1.6"
Expand Down

4 comments on commit 5bda0b7

@fingolfin
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

Release notes:

New features

  • Add sort! method for unfrozen LittleDict (#136)
  • Add mergewith method for LittleDict (#119)

Bug fixes

  • Fix rehash! for OrderedDict (for example delete!(d, nothing) could produce nonsense or even crash) (#120)
  • Avoid iterating twice over generators when there is an exception, at least in Julia >= 1.11 (#137)

Other changes

  • Remove all uses ccall (#121)
  • Remove convert method for Type{OrderedDict}, the generic Julia method does the same, except for a deprecation warning our method produced (#139)
  • Several other janitorial changes

@JuliaRegistrator
Copy link

Choose a reason for hiding this comment

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

Error while trying to register: Register Failed
@fingolfin, it looks like you are not a publicly listed member/owner in the parent organization (JuliaCollections).
If you are a member/owner, you will need to change your membership to public. See GitHub Help

@fingolfin
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

Release notes:

New features

  • Add sort! method for unfrozen LittleDict (#136)
  • Add mergewith method for LittleDict (#119)

Bug fixes

  • Fix rehash! for OrderedDict (for example delete!(d, nothing) could produce nonsense or even crash) (#120)
  • Avoid iterating twice over generators when there is an exception, at least in Julia >= 1.11 (#137)

Other changes

  • Remove all uses ccall (#121)
  • Remove convert method for Type{OrderedDict}, the generic Julia method does the same, except for a deprecation warning our method produced (#139)
  • Several other janitorial changes

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

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>" 5bda0b7a3f31703aae99cb95fc6776385990dbf1
git push origin v1.7.0

Please sign in to comment.