Skip to content

Commit

Permalink
bump version
Browse files Browse the repository at this point in the history
  • Loading branch information
jgreener64 committed May 9, 2022
1 parent 1d441ec commit 5fb4b00
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 3 deletions.
4 changes: 4 additions & 0 deletions NEWS.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Molly.jl release notes

## v0.10.1 - May 2022

- A bug in the `Gravity` force and potential energy is fixed.

## v0.10.0 - Apr 2022

- Loggers now also run before the first simulation step, i.e. at step 0, allowing the starting state to be recorded.
Expand Down
2 changes: 1 addition & 1 deletion Project.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
name = "Molly"
uuid = "aa0f7f06-fcc0-5ec4-a7f3-a573f33f9c4c"
authors = ["Joe G Greener <jgreener@hotmail.co.uk>"]
version = "0.10.0"
version = "0.10.1"

[deps]
AtomsBase = "a963bdd2-2df7-4f54-a1ee-49d51e6be12a"
Expand Down
4 changes: 2 additions & 2 deletions docs/src/docs.md
Original file line number Diff line number Diff line change
Expand Up @@ -396,9 +396,9 @@ We can use the logger to plot the fraction of people susceptible (blue), infecte
```
using Plots
sir_matrix = zeros(length(sys.loggers["SIR"].fracs_sir),3)
sir_matrix = zeros(length(sys.loggers["SIR"].fracs_sir), 3)
for i = 1:101
sir_matrix[i,:] .= sys.loggers["SIR"].fracs_sir[i][:]
sir_matrix[i, :] .= sys.loggers["SIR"].fracs_sir[i][:]
end
plot(sir_matrix)
Expand Down

2 comments on commit 5fb4b00

@jgreener64
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
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/59953

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.10.1 -m "<description of version>" 5fb4b0042c257020fb634c0ce6dfe108d711fbc2
git push origin v0.10.1

Please sign in to comment.