Skip to content

Commit

Permalink
chore: Prepare release 0.2.4
Browse files Browse the repository at this point in the history
  • Loading branch information
natir committed Dec 21, 2023
1 parent ae123f5 commit 619bc4a
Show file tree
Hide file tree
Showing 3 changed files with 18 additions and 4 deletions.
16 changes: 15 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,21 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/)
and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html).

<!-- insertion marker -->
## [0.2.4](https://github.com/natir/variantplaner/releases/tag/0.2.4) - 2023-12-21

<small>[Compare with 0.2.4](https://github.com/natir/variantplaner/compare/0.2.3...0.2.4)</small>

### Features

- add variantplaner logo.
- add method to compute partition value of id.

### Bug Fixes

- fix: #41 vcf spec indicate Integer must be store in 32bits.
- update to polars 0.20.

## [0.2.3](https://github.com/natir/variantplaner/releases/tag/0.2.2) - 2023-11-21

<small>[Compare with 0.2.2](https://github.com/natir/variantplaner/compare/0.2.2..0.2.3)</small>
Expand Down Expand Up @@ -52,7 +67,6 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
- Documentation fix
- Test coverage improvement

<!-- insertion marker -->
## [0.1.0](https://github.com/natir/variantplaner/releases/tag/0.1.0) - 2023-07-25

<small>[Compare with first commit](https://github.com/natir/variantplaner/compare/265a95ea26746b7aa796c3df6cee2451a608dd49...0.1.0)</small>
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,15 +12,15 @@ A toolkit to manage many variants from many samples, with limited resources.
With `pip`:

```bash
pip install git+https://github.com/natir/variantplaner.git@0.2.3#egg=variantplaner
pip install git+https://github.com/natir/variantplaner.git@0.2.4#egg=variantplaner
```

With [`pipx`](https://github.com/pipxproject/pipx):


```bash
python -m pip install --user pipx
pipx install git+https://github.com/natir/variantplaner.git@0.2.3#egg=variantplaner
pipx install git+https://github.com/natir/variantplaner.git@0.2.4#egg=variantplaner
```

## Usage
Expand Down
2 changes: 1 addition & 1 deletion src/variantplaner/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,4 +10,4 @@
from variantplaner import exception, extract, generate, io, normalization, struct

__all__: list[str] = ["exception", "extract", "generate", "io", "normalization", "struct"]
__version__: str = "0.2.3"
__version__: str = "0.2.4"

0 comments on commit 619bc4a

Please sign in to comment.