Skip to content

Commit 321fe8e

Browse files
committed
Prepare release v0.1.3
1 parent 98c9561 commit 321fe8e

File tree

2 files changed

+27
-2
lines changed

2 files changed

+27
-2
lines changed

CHANGELOG.md

Lines changed: 19 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,17 +11,34 @@ and this project adheres to [Semantic Versioning][]. Full commit history is avai
1111

1212
## Version 0.1
1313

14+
### Unreleased
15+
16+
### 0.1.3 (2025-02-07)
17+
18+
#### Added
19+
20+
- Added tests for the single-sample case {pr}`29`.
21+
22+
#### Removed
23+
24+
- Removed `tenacity` for query retries {pr}`28`.
25+
26+
#### Fixed
27+
28+
- Fixed `_get_annotation_summary_string` for the single-sample case {pr}`29`.
29+
- Fixed the expected cell type marker test by adding additional marker genes {pr}`28`.
30+
1431
### 0.1.2 (2025-01-29)
1532

1633
#### Added
1734

18-
- Update the documentation, in particular the installation instructions.
35+
- Update the documentation, in particular the installation instructions.
1936

2037
### 0.1.1 (2025-01-29)
2138

2239
#### Added
2340

24-
- Initial push to PyPI
41+
- Initial push to PyPI
2542

2643
### 0.1.0 (2025-01-29)
2744

docs/conf.py

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -59,6 +59,7 @@
5959
"IPython.sphinxext.ipython_console_highlighting",
6060
"sphinxext.opengraph",
6161
*[p.stem for p in (HERE / "extensions").glob("*.py")],
62+
"sphinx.ext.extlinks",
6263
]
6364

6465
# autodoc + napoleon configuration
@@ -101,6 +102,13 @@
101102
"numpy": ("https://numpy.org/doc/stable/", None),
102103
}
103104

105+
# extlinks config
106+
extlinks = {
107+
"issue": (f"{repository_url}/issues/%s", "#%s"),
108+
"pr": (f"{repository_url}/pull/%s", "#%s"),
109+
"ghuser": ("https://github.com/%s", "@%s"),
110+
}
111+
104112
# List of patterns, relative to source directory, that match files and
105113
# directories to ignore when looking for source files.
106114
# This pattern also affects html_static_path and html_extra_path.

0 commit comments

Comments
 (0)