Skip to content

Commit dc87e6f

Browse files
committed
[Release Prep] v0.1.3
1 parent fe22a79 commit dc87e6f

File tree

9 files changed

+52
-29
lines changed

9 files changed

+52
-29
lines changed

.readthedocs.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ version: 2
33
build:
44
os: ubuntu-20.04
55
tools:
6-
python: "3.9"
6+
python: "3.12"
77

88
sphinx:
99
configuration: docs/source/conf.py

PyCytoData/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
from PyCytoData.data import DataLoader, PyCytoData, FileIO
22
from PyCytoData import exceptions, preprocess
33

4-
__VERSION__ = "0.1.2"
4+
__VERSION__ = "0.1.3"

README.md

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -161,22 +161,22 @@ For detailed documentation along with tutorials and API Reference, please visit
161161

162162
If you prefer to build documentation on your own, refer to [this guide](https://pycytodata.readthedocs.io/en/latest/change/build.html) for more details.
163163

164-
## Latest Release: 0.1.2
164+
## Latest Release: 0.1.3
165165

166-
This is a minor release that fixes a critical bug that affects all previous releases.
167-
Update is strongly recommended.
166+
This is a minor release that fixes a critical bug that affects all previous releases. Update is strongly recommended. A few quality-of-life improvements are included as well.
168167

169168
### Bug Fixes
170169

171-
- Fixed a critical issue with ``PyCytoData.load_dataset()`` not working due to old web source down ([#3](https://github.com/kevin931/PyCytoData/issues/3))
172-
- This issue stems from upstream web source, thus affecting all previous releases.
173-
- This update fixes the issue with a different implementation.
174-
- There is no implementation change.
170+
- Fixed a critical issue with subsetting channels not updating internal indices lineage channels.
171+
- Fixed a verbiage error for subsetting error messages. Now, it is explicitly stated that integer indexing is not supported.
172+
- Updated documentation to fix typos.
175173

176174

177175
### Changes and New Features
178-
179-
- No new feature added.
176+
- Updated CI pipeline to include newest Python releases.
177+
- Added our logo usage policy.
178+
- Clarified the python version needed to run `PyCytoData`.
179+
- No new software feature added.
180180

181181
## References
182182

docs/source/change/development.rst

Lines changed: 2 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -16,15 +16,11 @@ Here are our milestones that we would like to achieve for our package!
1616
Major Milestones
1717
------------------
1818

19-
- Integration with Cytomulate
2019
- Support for more datasets
2120
- Command-line Interface
2221

23-
Minor Milestones
24-
-------------------
25-
26-
- Magic methods for ``PyCytoData`` class
27-
- More attributes
22+
Please see our `GitHub issue tracker <https://github.com/kevin931/PyCytoData/issues>`_ for our
23+
latest feature requests and work in progress.
2824

2925
---------
3026

docs/source/change/index.rst

Lines changed: 10 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -9,25 +9,26 @@ doing!
99
-------------------
1010

1111
*************************
12-
Latest Release: v0.1.2
12+
Latest Release: v0.1.3
1313
*************************
1414

15-
This is a minor release that fixes a critical bug that affects all previous releases.
16-
Update is strongly recommended.
15+
This is a minor release that fixes a critical bug that affects all previous releases. Update is strongly recommended. A few quality-of-life improvements are included as well.
1716

1817
Bug Fixes
1918
-----------
2019

21-
- Fixed a critical issue with ``PyCytoData.load_dataset()`` not working due to old web source down (`#3 <https://github.com/kevin931/PyCytoData/issues/3>`_)
22-
- This issue stems from upstream web source, thus affecting all previous releases.
23-
- This update fixes the issue with a different implementation.
24-
- There is no implementation change.
20+
- Fixed a critical issue with subsetting channels not updating internal indices lineage channels.
21+
- Fixed a verbiage error for subsetting error messages. Now, it is explicitly stated that integer indexing is not supported.
22+
- Updated documentation to fix typos.
2523

2624

2725
Changes and New Features
28-
--------------------------
26+
----------------------------
2927

30-
- No new feature added.
28+
- Updated CI pipeline to include newest Python releases.
29+
- Added our logo usage policy.
30+
- Clarified the python version needed to run `PyCytoData`.
31+
- No new software feature added.
3132

3233
-------------------------
3334

docs/source/change/logo.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
Logo Usage
33
========================
44

5-
../../assets/pycytodata.jpg
5+
.. image:: ../../assets/pycytodata.jpg
66

77

88
We proudly share the `PyCytoData` logo with the community. In fact, in lieu of an MIT license

docs/source/change/releases.rst

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,32 @@ Here we include our release notes for past releases in sequential order.
66

77
------------------
88

9+
*************
10+
v0.1.3
11+
*************
12+
13+
14+
This is a minor release that fixes a critical bug that affects all previous releases. Update is strongly recommended. A few quality-of-life improvements are included as well.
15+
16+
Bug Fixes
17+
-----------
18+
19+
- Fixed a critical issue with subsetting channels not updating internal indices lineage channels.
20+
- Fixed a verbiage error for subsetting error messages. Now, it is explicitly stated that integer indexing is not supported.
21+
- Updated documentation to fix typos.
22+
23+
24+
Changes and New Features
25+
----------------------------
26+
27+
- Updated CI pipeline to include newest Python releases.
28+
- Added our logo usage policy.
29+
- Clarified the python version needed to run `PyCytoData`.
30+
- No new software feature added.
31+
32+
---------------------
33+
34+
935
********
1036
v0.1.2
1137
********

meta.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{% set name = "PyCytoData" %}
2-
{% set version = "0.1.2" %}
2+
{% set version = "0.1.3" %}
33

44
package:
55
name: "{{ name|lower }}"

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77
from typing import List
88

9-
VERSION = "0.1.2"
9+
VERSION = "0.1.3"
1010

1111
class PypiCommand(distutils.cmd.Command):
1212

0 commit comments

Comments
 (0)