Skip to content

Commit

Permalink
Merge pull request #44 from lucasvalenzuela/patch-1
Browse files Browse the repository at this point in the history
  • Loading branch information
mileslucas authored Jul 20, 2022
2 parents 758e867 + cb1571c commit 1dc50aa
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,6 +1,6 @@
name = "Cosmology"
uuid = "76746363-e552-5dba-9a5a-cef6fa9cc5ab"
version = "1.0.1"
version = "1.0.2"

[deps]
QuadGK = "1fd47b50-473d-5c70-9696-f719f8f3bcdc"
Expand Down
2 changes: 1 addition & 1 deletion src/Cosmology.jl
Original file line number Diff line number Diff line change
Expand Up @@ -172,7 +172,7 @@ H(c::AbstractCosmology, z) = 100 * c.h * E(c, z) * km / s / Mpc
hubble_dist0(c::AbstractCosmology) = 2997.92458 / c.h * Mpc
hubble_dist(c::AbstractCosmology, z) = hubble_dist0(c) / E(c, z)

hubble_time0(c::AbstractCosmology) = 9.77814 / c.h * Gyr
hubble_time0(c::AbstractCosmology) = 9.777922216807891 / c.h * Gyr
hubble_time(c::AbstractCosmology, z) = hubble_time0(c) / E(c, z)

# distances
Expand Down

2 comments on commit 1dc50aa

@mileslucas
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
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/64645

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 v1.0.2 -m "<description of version>" 1dc50aa96b7bb5efeda016013c5e3d4129ef6baf
git push origin v1.0.2

Please sign in to comment.