Skip to content

Commit

Permalink
Merge branch 'hotfix/0.1.6'
Browse files Browse the repository at this point in the history
  • Loading branch information
galjos committed Apr 24, 2024
2 parents e6a964e + 309d852 commit 2247866
Show file tree
Hide file tree
Showing 2 changed files with 1 addition 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 = "VibrationalAnalysis"
uuid = "04082e5c-1d57-4577-9a0f-61e6cd56dade"
authors = ["Josef M. Gallmetzer"]
version = "0.1.5"
version = "0.1.6"

[deps]
DelimitedFiles = "8bb1440f-4735-579b-a4ab-409b98df4dab"
Expand Down
1 change: 0 additions & 1 deletion src/calculate.jl
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,6 @@ julia> calculate(atom_masses, atom_coords, atom_charges, hessian)
```
"""

function calculate(atom_masses::Vector{Float64}, atom_coords::Matrix{Float64}, atom_charges::Vector{Float64}, hessian::Matrix{Float64})

# Symmetrize the hessian and mass weighting
Expand Down

2 comments on commit 2247866

@galjos
Copy link
Collaborator Author

@galjos galjos commented on 2247866 Apr 24, 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/105536

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.1.6 -m "<description of version>" 2247866f23613ba8fc38ec0aeb6e34e5699ee938
git push origin v0.1.6

Please sign in to comment.