Skip to content

Commit

Permalink
Release v0.1.2
Browse files Browse the repository at this point in the history
  • Loading branch information
althonos committed Nov 5, 2024
1 parent 17c7bdd commit a5e2859
Show file tree
Hide file tree
Showing 6 changed files with 24 additions and 13 deletions.
14 changes: 7 additions & 7 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: 3.x
python-version: "3.13"
- name: Build wheels
uses: PyO3/maturin-action@v1
with:
Expand All @@ -35,7 +35,7 @@ jobs:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: 3.x
python-version: "3.13"
- name: Build wheels
uses: PyO3/maturin-action@v1
with:
Expand All @@ -56,7 +56,7 @@ jobs:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: 3.x
python-version: "3.13"
- name: Build wheels
uses: PyO3/maturin-action@v1
with:
Expand All @@ -77,7 +77,7 @@ jobs:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: 3.x
python-version: "3.13"
- name: Build wheels
uses: PyO3/maturin-action@v1
with:
Expand All @@ -98,7 +98,7 @@ jobs:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: 3.x
python-version: "3.13"
architecture: x64
- name: Build wheels
uses: PyO3/maturin-action@v1
Expand All @@ -123,7 +123,7 @@ jobs:
- name: Set up Python 3.13
uses: actions/setup-python@v5
with:
python-version: 3.13
python-version: "3.13"
- name: Install CI requirements
run: python -m pip install -U -r .github/workflows/requirements.txt
- name: Build source distribution without vendored sources
Expand All @@ -142,7 +142,7 @@ jobs:
- name: Setup Python 3.13
uses: actions/setup-python@v5
with:
python-version: 3.13
python-version: "3.13"
- name: Download source distribution
uses: actions/download-artifact@v4
with:
Expand Down
12 changes: 11 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,17 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.


## [Unreleased]
[Unreleased]: https://github.com/althonos/pysylph/compare/v0.1.1...HEAD
[Unreleased]: https://github.com/althonos/pysylph/compare/v0.1.2...HEAD


## [v0.1.2] - 2024-11-05
[v0.1.2]: https://github.com/althonos/pysylph/compare/v0.1.1...v0.1.2

### Added
- `Sketcher.sketch_paired` to sketch paired reads.
- `SampleSketch.kmer_counts` to access the k-mer counts of a sketch as a Python `dict`.
- `deduplicated` and `fpr` parameters to `Sketcher` to control read deduplication.
- Package recipe on the Arch User Repository.


## [v0.1.1] - 2024-10-25
Expand Down
2 changes: 1 addition & 1 deletion Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "pysylph"
version = "0.1.1"
version = "0.1.2"
edition = "2021"
authors = ["Martin Larralde <[email protected]>"]
license = "MIT"
Expand Down
4 changes: 2 additions & 2 deletions docs/_static/json/switcher.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[
{
"name": "v0.1 (latest)",
"version": "0.1.1",
"url": "https://pysylph.readthedocs.io/en/v0.1.1/"
"version": "0.1.2",
"url": "https://pysylph.readthedocs.io/en/v0.1.2/"
}
]
3 changes: 2 additions & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,8 @@ classifiers = [
]

[project.urls]
# "Documentation" = "https://pysylph.readthedocs.io"
"Homepage" = "https://github.com/althonos/pysylph/"
"Documentation" = "https://pysylph.readthedocs.io"
"Bug Tracker" = "https://github.com/althonos/pysylph/issues"
"Changelog" = "https://github.com/althonos/pysylph/blob/master/CHANGELOG.md"
# "Coverage" = "https://codecov.io/gh/althonos/pysylph/"
Expand Down

0 comments on commit a5e2859

Please sign in to comment.