Skip to content

Commit

Permalink
release: bump to version v0.8.3
Browse files Browse the repository at this point in the history
  • Loading branch information
tshauck committed Jan 26, 2024
1 parent 7d8349d commit c5822d5
Show file tree
Hide file tree
Showing 18 changed files with 54 additions and 48 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.8.2
tags: public.ecr.aws/p3a4z1t3/exon-cli:latest,public.ecr.aws/p3a4z1t3/exon-cli:v0.8.3
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.8.3 (2024-01-26)

### Fix

- update BAM/SAM tests (#366)

## v0.8.2 (2024-01-25)

## v0.8.1 (2024-01-25)
Expand Down
38 changes: 19 additions & 19 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.8.2"
version = "0.8.3"

[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.8.2",
"version": "0.8.3",
"tag_format": "v$version",
"version_files": [
"Cargo.toml",
Expand Down
2 changes: 1 addition & 1 deletion exon/exon-bam/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.8.2"}
exon-common = {path = "../exon-common", version = "0.8.3"}
futures = {workspace = true}
itertools = "0.12.0"
noodles = {workspace = true, features = ["core", "async", "bam", "sam", "bgzf"]}
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.8.2"}
exon-vcf = {path = "../exon-vcf", version = "0.8.2"}
exon-common = {path = "../exon-common", version = "0.8.3"}
exon-vcf = {path = "../exon-vcf", version = "0.8.3"}
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.8.2"}
exon-common = {path = "../exon-common", version = "0.8.3"}
futures = {workspace = true}
noodles = {workspace = true, features = ["bed", "core"]}
object_store = {workspace = true}
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
clap = {version = "4", features = ["derive", "cargo"]}
datafusion = {workspace = true}
datafusion-cli = {version = "35"}
exon = {path = "../exon-core", version = "0.8.2"}
exon = {path = "../exon-core", version = "0.8.3"}
tokio = {workspace = true}
tracing = "0.1.40"
tracing-subscriber = {version = "0.3.18", features = ["env-filter"]}
26 changes: 13 additions & 13 deletions exon/exon-core/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -16,19 +16,19 @@ arrow = {workspace = true}
async-trait = {workspace = true}
bytes = "1.5.0"
datafusion = {workspace = true}
exon-bam = {path = "../exon-bam", version = "0.8.2"}
exon-bcf = {path = "../exon-bcf", version = "0.8.2"}
exon-bed = {path = "../exon-bed", version = "0.8.2"}
exon-common = {path = "../exon-common", version = "0.8.2"}
exon-fasta = {path = "../exon-fasta", version = "0.8.2"}
exon-fastq = {path = "../exon-fastq", version = "0.8.2"}
exon-fcs = {path = "../exon-fcs", version = "0.8.2", optional = true}
exon-genbank = {path = "../exon-genbank", version = "0.8.2", optional = true}
exon-gff = {path = "../exon-gff", version = "0.8.2"}
exon-gtf = {path = "../exon-gtf", version = "0.8.2"}
exon-io = {path = "../exon-io", version = "0.8.2"}
exon-mzml = {path = "../exon-mzml", version = "0.8.2", optional = true}
exon-vcf = {path = "../exon-vcf", version = "0.8.2"}
exon-bam = {path = "../exon-bam", version = "0.8.3"}
exon-bcf = {path = "../exon-bcf", version = "0.8.3"}
exon-bed = {path = "../exon-bed", version = "0.8.3"}
exon-common = {path = "../exon-common", version = "0.8.3"}
exon-fasta = {path = "../exon-fasta", version = "0.8.3"}
exon-fastq = {path = "../exon-fastq", version = "0.8.3"}
exon-fcs = {path = "../exon-fcs", version = "0.8.3", optional = true}
exon-genbank = {path = "../exon-genbank", version = "0.8.3", optional = true}
exon-gff = {path = "../exon-gff", version = "0.8.3"}
exon-gtf = {path = "../exon-gtf", version = "0.8.3"}
exon-io = {path = "../exon-io", version = "0.8.3"}
exon-mzml = {path = "../exon-mzml", version = "0.8.3", optional = true}
exon-vcf = {path = "../exon-vcf", version = "0.8.3"}
futures = {workspace = true}
itertools = "0.12.0"
noodles = {workspace = true, features = ["bed", "tabix", "core", "async", "bcf", "vcf", "bgzf", "csi", "gtf"]}
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.8.2"}
exon-common = {path = "../exon-common", version = "0.8.3"}
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.8.2"}
exon-common = {path = "../exon-common", version = "0.8.3"}
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.8.2"}
exon-common = {path = "../exon-common", version = "0.8.3"}
futures = {workspace = true}
object_store = {workspace = true}
tokio = {workspace = true}
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.8.2"}
exon-common = {path = "../exon-common", version = "0.8.3"}
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.8.2"}
exon-common = {path = "../exon-common", version = "0.8.3"}
futures = {workspace = true}
noodles = {workspace = true, features = ["gff", "core"]}
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.8.2"}
exon-common = {path = "../exon-common", version = "0.8.3"}
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.21"}
byteorder = {version = "1.5.0"}
exon-common = {path = "../exon-common", version = "0.8.2"}
exon-common = {path = "../exon-common", version = "0.8.3"}
flate2 = {version = "1.0.28"}
futures = {workspace = true}
object_store = {workspace = true}
Expand Down
2 changes: 1 addition & 1 deletion exon/exon-vcf/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.8.2"}
exon-common = {path = "../exon-common", version = "0.8.3"}
futures = {workspace = true}
noodles = {workspace = true, features = ["core", "async", "vcf", "bgzf"]}
noodles-bgzf = {version = "0.26.0", features = ["libdeflate"]}
Expand Down

0 comments on commit c5822d5

Please sign in to comment.