Skip to content

Commit

Permalink
version 0.0.6
Browse files Browse the repository at this point in the history
  • Loading branch information
abhisrkckl committed Nov 6, 2024
1 parent 2ac22d6 commit 200d7e4
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 2 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# Unreleased
## Added
## Changed
## Fixed
## Removed

# 0.0.6
## Added
- `pyvela.SPNTA` class
- `get_unit_conversion_factor` function
- `prior_scaling` methods and `scale_prior_args` function
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 = "Vela"
uuid = "e20ed1ff-b155-4b65-a650-1609b657a8ad"
authors = ["Abhimanyu Susobhanan <[email protected]>"]
version = "0.0.5"
version = "0.0.6"

[deps]
Distributions = "31c24e10-a181-5473-b8eb-7969acd0382f"
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"

[project]
name = "pyvela"
version = "0.0.5"
version = "0.0.6"
description = "Python interface for Vela.jl, a Bayesian pulsar timing and noise analysis package."
keywords = ["astronomy", "astrophysics", "pulsar"]

Expand Down
4 changes: 4 additions & 0 deletions pyvela/pyvela/__init__.py
Original file line number Diff line number Diff line change
@@ -1,2 +1,6 @@
from .spnta import SPNTA
from .vela import vl as Vela

from importlib import metadata

__version__ = metadata.version("pyvela")

0 comments on commit 200d7e4

Please sign in to comment.