Skip to content

Commit

Permalink
bump version and tighten type bound for ExtendedHubbardReal1D
Browse files Browse the repository at this point in the history
  • Loading branch information
joachimbrand committed Feb 29, 2024
1 parent e13a4fe commit 3f1dd72
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Project.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
name = "Rimu"
uuid = "c53c40cc-bd84-11e9-2cf4-a9fde2b9386e"
authors = ["Joachim Brand <j.brand@massey.ac.nz>"]
version = "0.11.1-dev"
version = "0.11.1"

[deps]
Arrow = "69666777-d1a9-59fb-9406-91d4454c9d45"
Expand Down
2 changes: 1 addition & 1 deletion src/Hamiltonians/ExtendedHubbardReal1D.jl
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ Implements the extended Hubbard model on a one-dimensional chain in real space.
* `t`: the hopping strength
"""
struct ExtendedHubbardReal1D{TT,A<:AbstractFockAddress,U,V,T} <: AbstractHamiltonian{TT}
struct ExtendedHubbardReal1D{TT,A<:SingleComponentFockAddress,U,V,T} <: AbstractHamiltonian{TT}
add::A
end

Expand Down

2 comments on commit 3f1dd72

@joachimbrand
Copy link
Collaborator 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:

Non-breaking release with one major new feature and a number of bug fixes and enhancements.

New features

Changed behaviour

  • dimension works separately on address types and AbstractHamiltonian instances
  • The AbstractHamiltonian interface definition (via the docstring) had some minor changes and clarification rework dimension #244
  • example scripts were polished Example script polishing #239

Bug fixes

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

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.11.1 -m "<description of version>" 3f1dd729af8495d843f4a2d3eae9b10947aeeb1c
git push origin v0.11.1

Please sign in to comment.