Skip to content

Commit

Permalink
release: bump to version v0.29.0
Browse files Browse the repository at this point in the history
  • Loading branch information
tshauck committed Jul 15, 2024
1 parent e2b5e23 commit 9d0011c
Show file tree
Hide file tree
Showing 22 changed files with 67 additions and 61 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build-cli-image.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,5 +37,5 @@ jobs:
build-args: |
CARGO_BUILD_PROFILE=release
push: true
tags: public.ecr.aws/p3a4z1t3/exon-cli:latest,public.ecr.aws/p3a4z1t3/exon-cli:v0.28.1
tags: public.ecr.aws/p3a4z1t3/exon-cli:latest,public.ecr.aws/p3a4z1t3/exon-cli:v0.29.0
platforms: linux/amd64,linux/arm64
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# CHANGELOG

## v0.29.0 (2024-07-15)

### Feat

- add read_sdf api (#576)

## v0.28.1 (2024-07-15)

## v0.28.0 (2024-07-15)
Expand Down
44 changes: 22 additions & 22 deletions 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
Expand Up @@ -4,7 +4,7 @@ homepage = "https://www.wheretrue.dev/docs/exon/"
license = "Apache-2.0"
readme = "README.md"
repository = "https://github.com/wheretrue/exon"
version = "0.28.1"
version = "0.29.0"

[workspace]
members = [
Expand Down
2 changes: 1 addition & 1 deletion cz.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"commitizen": {
"name": "cz_conventional_commits",
"version": "0.28.1",
"version": "0.29.0",
"tag_format": "v$version",
"version_files": [
"Cargo.toml",
Expand Down
4 changes: 2 additions & 2 deletions exon/exon-bam/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,8 @@ version = { workspace = true }

[dependencies]
arrow = { workspace = true }
exon-common = { path = "../exon-common", version = "0.28.1" }
exon-sam = { path = "../exon-sam", version = "0.28.1" }
exon-common = { path = "../exon-common", version = "0.29.0" }
exon-sam = { path = "../exon-sam", version = "0.29.0" }
futures = { workspace = true }
itertools = "0.13"
noodles = { workspace = true, features = [
Expand Down
4 changes: 2 additions & 2 deletions exon/exon-bcf/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,8 @@ version.workspace = true

[dependencies]
arrow = { workspace = true }
exon-common = { path = "../exon-common", version = "0.28.1" }
exon-vcf = { path = "../exon-vcf", version = "0.28.1" }
exon-common = { path = "../exon-common", version = "0.29.0" }
exon-vcf = { path = "../exon-vcf", version = "0.29.0" }
futures = { workspace = true }
noodles = { workspace = true, features = ["core", "async", "bcf", "bgzf"] }
object_store = { workspace = true }
Expand Down
2 changes: 1 addition & 1 deletion exon/exon-bed/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ version.workspace = true

[dependencies]
arrow = { workspace = true }
exon-common = { path = "../exon-common", version = "0.28.1" }
exon-common = { path = "../exon-common", version = "0.29.0" }
futures = { workspace = true }
noodles = { workspace = true, features = ["bed", "core"] }
object_store = { workspace = true }
Expand Down
2 changes: 1 addition & 1 deletion exon/exon-bigwig/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ version.workspace = true

[dependencies]
arrow = { workspace = true }
exon-common = { path = "../exon-common", version = "0.28.1" }
exon-common = { path = "../exon-common", version = "0.29.0" }
noodles = { workspace = true, features = ["core"] }
futures = { workspace = true }
bigtools = "0.5"
Expand Down
2 changes: 1 addition & 1 deletion exon/exon-cli/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ version.workspace = true
datafusion-cli = { version = "40" }
clap = { version = "4", features = ["derive", "cargo"] }
datafusion = { workspace = true }
exon = { path = "../exon-core", version = "0.28.1", features = ["default"] }
exon = { path = "../exon-core", version = "0.29.0", features = ["default"] }
tokio = { workspace = true }
tracing = { workspace = true }
tracing-subscriber = { version = "0.3.18", features = ["env-filter"] }
34 changes: 17 additions & 17 deletions exon/exon-core/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -15,23 +15,23 @@ arrow = { workspace = true }
async-trait = { workspace = true }
bytes = "1.6.1"
datafusion = { workspace = true }
exon-bam = { path = "../exon-bam", version = "0.28.1" }
exon-sdf = { path = "../exon-sdf", version = "0.28.1" }
exon-bcf = { path = "../exon-bcf", version = "0.28.1" }
exon-bed = { path = "../exon-bed", version = "0.28.1" }
exon-cram = { path = "../exon-cram", version = "0.28.1" }
exon-common = { path = "../exon-common", version = "0.28.1" }
exon-fasta = { path = "../exon-fasta", version = "0.28.1" }
exon-fastq = { path = "../exon-fastq", version = "0.28.1" }
exon-fcs = { path = "../exon-fcs", version = "0.28.1", optional = true }
exon-genbank = { path = "../exon-genbank", version = "0.28.1", optional = true }
exon-gff = { path = "../exon-gff", version = "0.28.1" }
exon-gtf = { path = "../exon-gtf", version = "0.28.1" }
exon-io = { path = "../exon-io", version = "0.28.1" }
exon-mzml = { path = "../exon-mzml", version = "0.28.1", optional = true }
exon-sam = { path = "../exon-sam", version = "0.28.1" }
exon-vcf = { path = "../exon-vcf", version = "0.28.1" }
exon-bigwig = { path = "../exon-bigwig", version = "0.28.1" }
exon-bam = { path = "../exon-bam", version = "0.29.0" }
exon-sdf = { path = "../exon-sdf", version = "0.29.0" }
exon-bcf = { path = "../exon-bcf", version = "0.29.0" }
exon-bed = { path = "../exon-bed", version = "0.29.0" }
exon-cram = { path = "../exon-cram", version = "0.29.0" }
exon-common = { path = "../exon-common", version = "0.29.0" }
exon-fasta = { path = "../exon-fasta", version = "0.29.0" }
exon-fastq = { path = "../exon-fastq", version = "0.29.0" }
exon-fcs = { path = "../exon-fcs", version = "0.29.0", optional = true }
exon-genbank = { path = "../exon-genbank", version = "0.29.0", optional = true }
exon-gff = { path = "../exon-gff", version = "0.29.0" }
exon-gtf = { path = "../exon-gtf", version = "0.29.0" }
exon-io = { path = "../exon-io", version = "0.29.0" }
exon-mzml = { path = "../exon-mzml", version = "0.29.0", optional = true }
exon-sam = { path = "../exon-sam", version = "0.29.0" }
exon-vcf = { path = "../exon-vcf", version = "0.29.0" }
exon-bigwig = { path = "../exon-bigwig", version = "0.29.0" }
futures = { workspace = true }
itertools = "0.13"
noodles = { workspace = true, features = [
Expand Down
4 changes: 2 additions & 2 deletions exon/exon-cram/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,8 @@ version.workspace = true
[dependencies]
arrow = { workspace = true }
coitrees = "0.4.0"
exon-common = { path = "../exon-common", version = "0.28.1" }
exon-sam = { path = "../exon-sam", version = "0.28.1" }
exon-common = { path = "../exon-common", version = "0.29.0" }
exon-sam = { path = "../exon-sam", version = "0.29.0" }
futures = { workspace = true }
noodles = { workspace = true, features = ["core", "async", "cram", "fasta"] }
object_store = { workspace = true }
Expand Down
2 changes: 1 addition & 1 deletion exon/exon-fasta/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ version.workspace = true

[dependencies]
arrow = { workspace = true }
exon-common = { path = "../exon-common", version = "0.28.1" }
exon-common = { path = "../exon-common", version = "0.29.0" }
futures = { workspace = true }
noodles = { workspace = true, features = ["core", "async", "fasta"] }
object_store = { workspace = true }
Expand Down
2 changes: 1 addition & 1 deletion exon/exon-fastq/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ version.workspace = true

[dependencies]
arrow = { workspace = true }
exon-common = { path = "../exon-common", version = "0.28.1" }
exon-common = { path = "../exon-common", version = "0.29.0" }
futures = { workspace = true }
noodles = { workspace = true, features = ["async", "fastq"] }
object_store = { workspace = true }
Expand Down
2 changes: 1 addition & 1 deletion exon/exon-fcs/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ version.workspace = true
[dependencies]
arrow = { workspace = true }
byteorder = { version = "1.5.0" }
exon-common = { path = "../exon-common", version = "0.28.1" }
exon-common = { path = "../exon-common", version = "0.29.0" }
futures = { workspace = true }
object_store = { workspace = true }
tokio = { workspace = true, features = ["fs"] }
Expand Down
2 changes: 1 addition & 1 deletion exon/exon-genbank/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ version.workspace = true

[dependencies]
arrow = { workspace = true }
exon-common = { path = "../exon-common", version = "0.28.1" }
exon-common = { path = "../exon-common", version = "0.29.0" }
futures = { workspace = true }
gb-io = { version = "0.7.1" }
object_store = { workspace = true }
Expand Down
2 changes: 1 addition & 1 deletion exon/exon-gff/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ version.workspace = true

[dependencies]
arrow = { workspace = true }
exon-common = { path = "../exon-common", version = "0.28.1" }
exon-common = { path = "../exon-common", version = "0.29.0" }
futures = { workspace = true }
noodles = { workspace = true, features = ["core", "gff", "async"] }
object_store = { workspace = true }
Expand Down
2 changes: 1 addition & 1 deletion exon/exon-gtf/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ version.workspace = true

[dependencies]
arrow = { workspace = true }
exon-common = { path = "../exon-common", version = "0.28.1" }
exon-common = { path = "../exon-common", version = "0.29.0" }
futures = { workspace = true }
noodles = { workspace = true, features = ["gtf"] }
object_store = { workspace = true }
Expand Down
2 changes: 1 addition & 1 deletion exon/exon-mzml/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ version.workspace = true
arrow = { workspace = true }
base64 = { version = "0.22" }
byteorder = { version = "1.5.0" }
exon-common = { path = "../exon-common", version = "0.28.1" }
exon-common = { path = "../exon-common", version = "0.29.0" }
flate2 = { version = "1.0.30" }
futures = { workspace = true }
object_store = { workspace = true }
Expand Down
Loading

0 comments on commit 9d0011c

Please sign in to comment.