Skip to content

Commit 78c7c8b

Browse files
authored
Update version numbers for 1.9.0 release (#491)
1 parent 9613906 commit 78c7c8b

File tree

5 files changed

+5
-5
lines changed

5 files changed

+5
-5
lines changed

docs/conf.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
author = "LSST DESC Firecrown Contributors"
2424

2525
# The full version, including alpha/beta/rc tags
26-
release = "1.9.0a0"
26+
release = "1.9.0"
2727

2828

2929
# -- General configuration ---------------------------------------------------

firecrown/version.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,5 +8,5 @@
88

99
FIRECROWN_MAJOR = 1
1010
FIRECROWN_MINOR = 9
11-
FIRECROWN_PATCH = "0a0"
11+
FIRECROWN_PATCH = 0
1212
__version__ = f"{FIRECROWN_MAJOR}.{FIRECROWN_MINOR}.{FIRECROWN_PATCH}"

tests/test_version.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,4 +8,4 @@
88

99

1010
def test_version():
11-
assert firecrown.__version__ == "1.9.0a0"
11+
assert firecrown.__version__ == "1.9.0"

tutorial/introduction_to_firecrown.qmd

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
---
22
title: An Introduction to Firecrown
3-
subtitle: "Version 1.9.0a0"
3+
subtitle: "Version 1.9.0"
44
authors:
55
- Marc Paterno
66
- Sandro Vitenti

tutorial/two_point_generators.qmd

+1-1
Original file line numberDiff line numberDiff line change
@@ -93,7 +93,7 @@ wl_photoz = wl.PhotoZShiftFactory()
9393
wl_mult_bias = wl.MultiplicativeShearBiasFactory()
9494
9595
# NumberCounts systematics -- global
96-
# As for Firecrown 1.9.0a0, we do not have any global systematics for number counts
96+
# As for Firecrown 1.9.0, we do not have any global systematics for number counts
9797
# NumberCounts systematics -- per-bin
9898
nc_photoz = nc.PhotoZShiftFactory()
9999

0 commit comments

Comments
 (0)