Skip to content

Commit

Permalink
make UV() a setter
Browse files Browse the repository at this point in the history
  • Loading branch information
aplavin committed Dec 27, 2024
1 parent f7cdd41 commit 0000000
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 = "VLBIData"
uuid = "679fc9cc-3e84-11e9-251b-cbd013bd8115"
authors = ["Alexander Plavin <[email protected]>"]
version = "0.3.28"
version = "0.3.29"

[deps]
AccessorsExtra = "33016aad-b69d-45be-9359-82a41f556fd4"
Expand Down
2 changes: 1 addition & 1 deletion src/uvdata.jl
Original file line number Diff line number Diff line change
Expand Up @@ -186,7 +186,7 @@ VisSpec(bl::VLBI.Baseline, uv::AbstractVector) = VisSpec(bl, UV(uv))
VLBI.Baseline(x::NamedTuple) = VLBI.Baseline(@oget x.baseline x.spec)

@accessor UV(x::VisSpec) = x.uv
UV(x::NamedTuple) = UV(x.spec)
@accessor UV(x::NamedTuple) = UV(x.spec)

InterferometricModels.visibility(x::NamedTuple) = x.value

Expand Down

2 comments on commit 0000000

@aplavin
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()

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

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.3.29 -m "<description of version>" 000000000c904351e6fa4fa0ce6d0dc8c4e3f48c
git push origin v0.3.29

Please sign in to comment.