Skip to content

Commit

Permalink
fix versions in [compat]
Browse files Browse the repository at this point in the history
  • Loading branch information
lpawela committed May 7, 2024
1 parent 548455c commit eeda07f
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions Project.toml
@@ -1,7 +1,7 @@
name = "QuantumInformation"
uuid = "3c0b384b-479c-5684-b2ef-9d7a46dd931e"
authors = ["Dariusz Kurzyk <dkurzyk@iitis.pl>", "Łukasz Pawela <lpawela@iitis.pl>", "Piotr Gawron <gawron@iitis.pl>", "Marcin Przewięźlikowski <m.przewie@gmail.com>"]
version = "0.4.10"
version = "0.4.11"

[deps]
Convex = "f65535da-76fb-5f13-bab9-19810c17039a"
Expand All @@ -21,8 +21,8 @@ DocStringExtensions = "0.8.3, 0.9"
MatrixEnsembles = "0.1"
SCS = "1.1.0"
StatsBase = "0.33.2, 0.34"
TensorCast = "0.3.2, 0.4"
TensorOperations = "3.0.1"
TensorCast = "0.4"
TensorOperations = "4"
julia = "1.7"

[extras]
Expand Down
2 changes: 1 addition & 1 deletion src/base.jl
Expand Up @@ -98,7 +98,7 @@ Returns `vec(ρ.T)`. Reshaping maps
"""
res::AbstractMatrix{<:Number}) = @cast x[(j, i)] := ρ[i, j]

unres::AbstractVector{<:Number}, cols::Int) = @cast x[i, j] := ϕ[(j, i)] j:cols
unres::AbstractVector{<:Number}, cols::Int) = @cast x[i, j] := ϕ[(j, i)] j in 1:cols

"""
$(SIGNATURES)
Expand Down

2 comments on commit eeda07f

@lpawela
Copy link
Member Author

@lpawela lpawela commented on eeda07f May 7, 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/106332

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.4.11 -m "<description of version>" eeda07ffc52cdce086ed8ed2a423f746b9658566
git push origin v0.4.11

Please sign in to comment.