From 1fa7370b4f7f6c3c585532f85cda4c2a2b3e774b Mon Sep 17 00:00:00 2001 From: Yuhan Yao Date: Sun, 25 Oct 2020 11:57:55 -0700 Subject: [PATCH 1/2] Add FBOT as a subclass of SN --- tdtax/supernovae.yaml | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/tdtax/supernovae.yaml b/tdtax/supernovae.yaml index fcc86b6..2d8a364 100644 --- a/tdtax/supernovae.yaml +++ b/tdtax/supernovae.yaml @@ -59,4 +59,10 @@ subclasses: tags: [peculiar] comments: SN 1987a other names: [SNIIp, SN II-p, SN Type IIp, IIpec, II-p] - +- class: FBOT + comments: | + This is a newly-discovered class of engine-driven explosions. + tags: [fast blue optical transient, fast-evolving luminous transient] + other names: [FELT] + links: + - https://en.wikipedia.org/wiki/Fast_blue_optical_transient From 12207f056f251260481626f7875eecc129cb6be5 Mon Sep 17 00:00:00 2001 From: jbloom Date: Sun, 25 Oct 2020 13:11:14 -0700 Subject: [PATCH 2/2] bump version --- tdtax/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tdtax/__init__.py b/tdtax/__init__.py index ad76988..174f105 100644 --- a/tdtax/__init__.py +++ b/tdtax/__init__.py @@ -28,7 +28,7 @@ .replace('"subclasses":', '"children":') vega_taxonomy = json.loads(taxstr) -__version__ = '0.1.1' +__version__ = '0.1.2' __all__ = ["taxonomy", "schema", "vega_taxonomy", "write_viz", "__version__"]