Skip to content

Commit 2cf6ccb

Browse files
committed
release prep
1 parent 93fe0ac commit 2cf6ccb

3 files changed

Lines changed: 43 additions & 2 deletions

File tree

chainladder/__init__.py

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,4 +42,10 @@ def auto_sparse(auto_sparse=True):
4242
from chainladder.methods import * # noqa (API Import)
4343
from chainladder.workflow import * # noqa (API Import)
4444

45-
__version__ = "0.8.24"
45+
try:
46+
from importlib.metadata import version
47+
__version__ = version("chainladder")
48+
except ImportError:
49+
# Fallback for Python < 3.8
50+
from importlib_metadata import version
51+
__version__ = version("chainladder")

docs/library/releases.md

Lines changed: 35 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,41 @@
22

33
## Version 0.8
44

5+
### Version 0.8.25
6+
7+
Release Date: Sep 25, 2025
8+
9+
**What's Changed**
10+
* Update pythonpublish.yml by @jbogaardt in [#550](https://github.com/casact/chainladder-python/pull/550)
11+
* 553 by @cdietrich215 in [#555](https://github.com/casact/chainladder-python/pull/555)
12+
* Adding annotations - triangle.py by @genedan in [#522](https://github.com/casact/chainladder-python/pull/522)
13+
* Update pytest_upstream_nightly.yml by @jbogaardt in [#557](https://github.com/casact/chainladder-python/pull/557)
14+
* Add annotations to triangle.py by @genedan in [#558](https://github.com/casact/chainladder-python/pull/558)
15+
* #457 v2 by @kennethshsu in [#563](https://github.com/casact/chainladder-python/pull/563)
16+
* Dangling commits? by @genedan in [#564](https://github.com/casact/chainladder-python/pull/564)
17+
* fix-typo-in-notebooks by @EKtheSage in [#568](https://github.com/casact/chainladder-python/pull/568)
18+
* Add annotations, minor validation. by @genedan in [#572](https://github.com/casact/chainladder-python/pull/572)
19+
* Add support for Weibull curve in tail fitting methods by @andrewwilson201 in [#577](https://github.com/casact/chainladder-python/pull/577)
20+
* Annotate TriangleDisplay.py by @genedan in [#576](https://github.com/casact/chainladder-python/pull/576)
21+
* Sandbox tutorial by @kennethshsu in [#581](https://github.com/casact/chainladder-python/pull/581)
22+
* Issues template by @kennethshsu in [#586](https://github.com/casact/chainladder-python/pull/586)
23+
* Readme update by @kennethshsu in [#589](https://github.com/casact/chainladder-python/pull/589)
24+
* Resolved merge conflict by @kennethshsu in [#590](https://github.com/casact/chainladder-python/pull/590)
25+
* Adding a native read_csv function to Chainladder-python by @JoJo10Smith in [#587](https://github.com/casact/chainladder-python/pull/587)
26+
* Fix package publishing warnings by @genedan in [#592](https://github.com/casact/chainladder-python/pull/592)
27+
* 583 by @kennethshsu in [#593](https://github.com/casact/chainladder-python/pull/593)
28+
* setup refactor by @jbogaardt in [#595](https://github.com/casact/chainladder-python/pull/595)
29+
* Fix KeyError for semi-annual origins by @andrewwilson201 in [#597](https://github.com/casact/chainladder-python/pull/597)
30+
* New contribution guideline by @kennethshsu in [#600](https://github.com/casact/chainladder-python/pull/600)
31+
* FIX: Fix errors in friedland_uspp_auto_increasing_claim.csv. by @genedan in [#594](https://github.com/casact/chainladder-python/pull/594)
32+
33+
**New Contributors**
34+
* @EKtheSage made their first contribution in [#568](https://github.com/casact/chainladder-python/pull/568)
35+
* @andrewwilson201 made their first contribution in [#577](https://github.com/casact/chainladder-python/pull/577)
36+
* @JoJo10Smith made their first contribution in [#587](https://github.com/casact/chainladder-python/pull/587)
37+
38+
**Full Changelog**: https://github.com/casact/chainladder-python/compare/v0.8.24...v0.8.25
39+
540
### Version 0.8.24
641

742
Release Date: Feb 13, 2025

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
44

55
[project]
66
name = "chainladder"
7-
version = "0.8.24"
7+
version = "0.8.25"
88
authors = [
99
{name = "John Bogaardt", email = "jbogaardt@gmail.com"},
1010
]

0 commit comments

Comments
 (0)