Skip to content

Commit

Permalink
release: bump to version v0.30.2
Browse files Browse the repository at this point in the history
  • Loading branch information
tshauck committed Aug 6, 2024
1 parent 4a458f5 commit 1cfaf86
Show file tree
Hide file tree
Showing 24 changed files with 89 additions and 103 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.30.1
tags: public.ecr.aws/p3a4z1t3/exon-cli:latest,public.ecr.aws/p3a4z1t3/exon-cli:v0.30.2
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.30.2 (2024-08-05)

### Fix

- new lock file

## v0.30.1 (2024-07-31)

### Fix
Expand Down
78 changes: 39 additions & 39 deletions Cargo.lock

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

4 changes: 2 additions & 2 deletions 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.30.1"
version = "0.30.2"

[workspace]
members = [
Expand Down Expand Up @@ -39,7 +39,7 @@ arrow = { version = "52.2.0" }
async-trait = "0.1.81"
datafusion = { version = "40", features = ["compression", "parquet"] }
futures = "0.3"
noodles = { version = "0.78" }
noodles = { version = "0.79" }
object_store = { version = "0.10.2" }
tokio = { version = "1", features = ["io-util"] }
tokio-util = { version = "0.7.11", features = ["compat"] }
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.30.1",
"version": "0.30.2",
"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.30.1" }
exon-sam = { path = "../exon-sam", version = "0.30.1" }
exon-common = { path = "../exon-common", version = "0.30.2" }
exon-sam = { path = "../exon-sam", version = "0.30.2" }
futures = { workspace = true }
noodles = { workspace = true, features = [
"core",
Expand Down
5 changes: 2 additions & 3 deletions exon/exon-bam/src/array_builder.rs
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ use arrow::{
use exon_common::ExonArrayBuilder;
use exon_sam::TagsBuilder;
use noodles::sam::{
alignment::record::{cigar::op::Kind, Cigar, Name},
alignment::record::{cigar::op::Kind, Cigar},
Header,
};

Expand Down Expand Up @@ -104,8 +104,7 @@ impl BAMArrayBuilder {
match col_idx {
0 => {
if let Some(name) = record.record().name() {
let sam_read_name = std::str::from_utf8(name.as_bytes())?;

let sam_read_name = std::str::from_utf8(name)?;
self.names.append_value(sam_read_name);
} else {
self.names.append_null();
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.30.1" }
exon-vcf = { path = "../exon-vcf", version = "0.30.1" }
exon-common = { path = "../exon-common", version = "0.30.2" }
exon-vcf = { path = "../exon-vcf", version = "0.30.2" }
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.30.1" }
exon-common = { path = "../exon-common", version = "0.30.2" }
futures = { workspace = true }
noodles = { workspace = true, features = ["bed", "core"] }
object_store = { workspace = true }
Expand Down
Loading

0 comments on commit 1cfaf86

Please sign in to comment.