diff --git a/Cargo.lock b/Cargo.lock index 4feb5e7c00677f9c25d320ddb97e1debc8f55d91..06364b912662551a5d2416454b60a7ab014a9fc5 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -101,7 +101,7 @@ dependencies = [ [[package]] name = "bigwig2bam" -version = "0.1.2" +version = "0.1.3" dependencies = [ "bam", "bigtools", diff --git a/Cargo.toml b/Cargo.toml index bf25e8d1debf806d8b48a4e9a6803a4867c3a908..0d97efec30dc95c1c5399a59a2ada5ebce408861 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -3,7 +3,7 @@ # SPDX-License-Identifier: AGPL-3.0-or-later [package] name = "bigwig2bam" -version = "0.1.2" +version = "0.1.3" edition = "2021" description = "A command line tools to convert bigwig file into single-end bam file" license = "AGPL-3.0-or-later" diff --git a/Dockerfile b/Dockerfile index 40db6052eada8fb52337cb9a819beaa0e09701a5..79aa0a591f671bbfc1038e155fb745f76148028f 100644 --- a/Dockerfile +++ b/Dockerfile @@ -3,7 +3,7 @@ # SPDX-License-Identifier: AGPL-3.0-or-later FROM rust:1.70-alpine3.18 AS build -RUN apk add --no-cache musl-dev pkgconfig openssl-dev libc-dev && cargo install bigwig2bam --version 0.1.2 +RUN apk add --no-cache musl-dev pkgconfig openssl-dev libc-dev && cargo install bigwig2bam --version 0.1.3 FROM alpine:3.18