Skip to content

Commit f528c29

Browse files
authored
Merge pull request #30 from quadbio/release/v0.1.3
Prepare release v0.1.3
2 parents 98c9561 + 3d096a9 commit f528c29

File tree

2 files changed

+26
-0
lines changed

2 files changed

+26
-0
lines changed

CHANGELOG.md

+18
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,24 @@ 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+
- Refer to issues and PRs with sphinx {pr}`30`.
22+
23+
#### Removed
24+
25+
- Removed `tenacity` for query retries {pr}`28`.
26+
27+
#### Fixed
28+
29+
- Fixed `_get_annotation_summary_string` for the single-sample case {pr}`29`.
30+
- Fixed the expected cell type marker test by adding additional marker genes {pr}`28`.
31+
1432
### 0.1.2 (2025-01-29)
1533

1634
#### Added

docs/conf.py

+8
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)