Skip to content

Commit 53d6b2d

Browse files
committed
Prep for release: v0.1.0
1 parent 3ac3288 commit 53d6b2d

File tree

7 files changed

+66
-24
lines changed

7 files changed

+66
-24
lines changed

CytofDR/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
1-
__version__ = "0.0.1"
1+
__version__ = "0.1.0"
22

33
from CytofDR import dr, evaluation

README.md

Lines changed: 12 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -62,17 +62,21 @@ Of course, there are many more customizations and ways you can use ``CytofDR``.
6262

6363
There you will find ways to install our package and get started! Also, we offer tutorials on customizations, working with DR methods, and finally our detailed evaluation framework. We hope that you can find what you need over there!
6464

65-
## Latest Release
65+
## Latest Release: v0.1.0
6666

67-
Our lastest release is ``v0.0.1`` with the following the following release notes:
67+
This is the first official release of ``CytofDR`` with LTS.
6868

69-
- This is the first offical pre-release of ``CytofDR``.
70-
- Most of the pipeline is complete, including DR, evaluation, ranking, and plotting.
71-
- Extensive documentation and tutorial complete.
72-
- This release aims to aid the completion of our development and tool chain.
73-
- We are on ``conda`` and ``PyPI``!
69+
### Bug Fixes
7470

75-
For more release and development information, look around on our GitHub or look through our [changelog](https://cytofdr.readthedocs.io/en/latest/change/index.html).
71+
- Remove ``numpy`` version restriction
72+
73+
### Changes and New Features
74+
75+
- Support for magic methods: ``print`` and ``[]`` for ``Reductions`` class
76+
- Add ``names`` attributes to ``Reductions`` class
77+
- Add custom DR evaluation
78+
- Add functions to save DR embeddings and evaluations
79+
- Improve documentation and docstrings
7680

7781
## Issues and Contributions
7882

docs/source/change/index.rst

Lines changed: 20 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,23 +1,32 @@
1+
#############
12
Changelog
2-
============
3+
#############
34

45
Here are the most recent releases and changes of cytomulate. Currently, we're still under developmet.
56
Therefore, we don't have any official releases. However, check out our git history to see what we're
67
doing!
78

8-
Latest Release
9-
----------------
9+
************************
10+
Latest Release: v0.1.0
11+
************************
1012

11-
v0.0.1
12-
********
13+
This is the first official release of ``CytofDR`` with LTS.
1314

14-
- This is the first offical pre-release of ``CytofDR``.
15-
- Most of the pipeline is complete, including DR, evaluation, ranking, and plotting.
16-
- Extensive documentation and tutorial complete.
17-
- This release aims to aid the completion of our development and tool chain.
18-
- We are on ``conda`` and ``PyPI``!
15+
Bug Fixes
16+
-----------
17+
18+
- Remove ``numpy`` version restriction
19+
20+
21+
Changes and New Features
22+
--------------------------
23+
24+
- Support for magic methods: ``print`` and ``[]`` for ``Reductions`` class
25+
- Add ``names`` attributes to ``Reductions`` class
26+
- Add custom DR evaluation
27+
- Add functions to save DR embeddings and evaluations
28+
- Improve documentation and docstrings
1929

20-
.. note:: This is not an official stable release. Please wait for v0.1.0 in the near future.
2130

2231
.. toctree::
2332
:maxdepth: 1

docs/source/change/releases.rst

Lines changed: 30 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,35 @@
1+
##########
12
Releases
2-
==========
3+
##########
34

5+
Here we include our release notes for past releases in sequential order.
6+
7+
--------------------
8+
9+
********
10+
v0.1.0
11+
********
12+
13+
This is the first official release of ``CytofDR`` with LTS.
14+
15+
Bug Fixes
16+
-----------
17+
18+
- Remove ``numpy`` version restriction
19+
20+
21+
Changes and New Features
22+
--------------------------
23+
24+
- Support for magic methods: ``print`` and ``[]`` for ``Reductions`` class
25+
- Add ``names`` attributes to ``Reductions`` class
26+
- Add custom DR evaluation
27+
- Add functions to save DR embeddings and evaluations
28+
- Improve documentation and docstrings
29+
30+
31+
32+
********
433
v0.0.1
534
********
635

docs/source/conf.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
project = 'CytofDR'
2121
copyright = '2022, Kevin Wang'
2222
author = 'Kevin Wang'
23-
release = '0.0.0'
23+
release = '0.1.0'
2424

2525
extensions = [
2626
"sphinx_rtd_theme",

meta.yaml

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

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

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
import shutil
55
import distutils.cmd
66

7-
VERSION = "0.0.1"
7+
VERSION = "0.1.0"
88

99
class PypiCommand(distutils.cmd.Command):
1010

0 commit comments

Comments
 (0)