Skip to content

Commit

Permalink
bump to stable release version 0.10.0
Browse files Browse the repository at this point in the history
  • Loading branch information
vreuter committed Oct 22, 2024
1 parent 780648b commit 9ee2d15
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ RUN apt-get update -y && \
RUN mkdir /looptrace
WORKDIR /looptrace
COPY . /looptrace
RUN mv /looptrace/target/scala-3.5.1/looptrace-assembly-0.10-SNAPSHOT.jar /looptrace/looptrace
RUN mv /looptrace/target/scala-3.5.1/looptrace-assembly-0.10.0.jar /looptrace/looptrace

# Install new-ish R and necessary packages.
RUN echo "Installing R..." && \
Expand Down
2 changes: 1 addition & 1 deletion build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ val primaryJavaVersion = "11"
val primaryOs = "ubuntu-latest"
val isPrimaryOsAndPrimaryJavaTest = s"runner.os == '$primaryOs' && runner.java-version == '$primaryJavaVersion'"
ThisBuild / scalaVersion := "3.5.1"
ThisBuild / version := "0.10-SNAPSHOT"
ThisBuild / version := "0.10.0"
ThisBuild / organization := orgName
ThisBuild / organizationName := "Gerlich Group, IMBA, OEAW"

Expand Down
2 changes: 1 addition & 1 deletion looptrace/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@


# This is put into place by the docker build, as declared in the Dockerfile.
LOOPTRACE_JAR_PATH = importlib.resources.files(__name__).joinpath("looptrace-assembly-0.10-SNAPSHOT.jar")
LOOPTRACE_JAR_PATH = importlib.resources.files(__name__).joinpath("looptrace-assembly-0.10.0.jar")
LOOPTRACE_JAVA_PACKAGE = "at.ac.oeaw.imba.gerlich.looptrace"

MAX_DISTANCE_SPOT_FROM_REGION_NAME = "max_dist"
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "looptrace"
version = "0.10dev"
version = "0.10.0"
description = "Library and programs for tracing chromatin loops from microscopy images"
authors = [
"Kai Sandvold Beckwith",
Expand Down

0 comments on commit 9ee2d15

Please sign in to comment.