Skip to content

Commit fffab68

Browse files
committed
Bump version to 0.2.0
1 parent 17a606a commit fffab68

4 files changed

Lines changed: 10 additions & 10 deletions

File tree

README.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
# GeneCAD: Plant Genome Annotation with a DNA Foundation Model
44

5-
![](https://img.shields.io/badge/version-0.1.0-blue)
5+
![](https://img.shields.io/badge/version-0.2.0-blue)
66
[![License](https://img.shields.io/badge/License-Apache%202.0-blue.svg)](https://opensource.org/licenses/Apache-2.0)
77
[![CI](https://github.com/plantcad/genecad/actions/workflows/ci.yaml/badge.svg)](https://github.com/plantcad/genecad/actions/workflows/ci.yaml)
88
[![bioRxiv](https://img.shields.io/badge/bioRxiv-10.1101/2025.10.31.685877-b31b1b.svg)](https://doi.org/10.1101/2025.10.31.685877)
@@ -1304,19 +1304,19 @@ If you use GeneCAD in your research, please cite:
13041304
```bash
13051305
# Build the image (requires Linux with Docker and NVIDIA drivers)
13061306
sudo usermod -aG docker ubuntu && newgrp docker
1307-
docker build --progress=plain --no-cache -t genecad:v0.1.0 .
1307+
docker build --progress=plain --no-cache -t genecad:v0.2.0 .
13081308
13091309
# Test the build — runs the full pipeline on the Arabidopsis example
1310-
docker run --rm --gpus all -v $(pwd):/workspace -w /workspace genecad:v0.1.0 \
1310+
docker run --rm --gpus all -v $(pwd):/workspace -w /workspace genecad:v0.2.0 \
13111311
bash predict.sh
13121312
13131313
# Publish to GitHub Container Registry
13141314
# Requires a personal access token with "write:packages" stored in GHCR_TOKEN
13151315
IMAGE=ghcr.io/plantcad/genecad_v1
1316-
docker tag genecad:v0.1.0 $IMAGE:v0.1.0
1317-
docker tag genecad:v0.1.0 $IMAGE:latest
1316+
docker tag genecad:v0.2.0 $IMAGE:v0.2.0
1317+
docker tag genecad:v0.2.0 $IMAGE:latest
13181318
echo $GHCR_TOKEN | docker login ghcr.io -u YOUR_GITHUB_USERNAME --password-stdin
1319-
docker push $IMAGE:v0.1.0
1319+
docker push $IMAGE:v0.2.0
13201320
docker push $IMAGE:latest
13211321
```
13221322

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ build-backend = "hatchling.build"
44

55
[project]
66
name = "genecad"
7-
version = "0.1.0"
7+
version = "0.2.0"
88
description = "GeneCAD: A long-context genome annotation model built on PlantCAD2"
99
readme = "README.md"
1010
requires-python = ">=3.12,<3.13"

scripts/install_release.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,10 +5,10 @@ set -euo pipefail
55
# Usage:
66
# bash scripts/install_release.sh
77
# Optional env vars:
8-
# GENECAD_VERSION=0.1.0
8+
# GENECAD_VERSION=0.2.0
99
# PYTORCH_CUDA_INDEX=https://download.pytorch.org/whl/cu128
1010

11-
GENECAD_VERSION="${GENECAD_VERSION:-0.1.0}"
11+
GENECAD_VERSION="${GENECAD_VERSION:-0.2.0}"
1212
PYTORCH_CUDA_INDEX="${PYTORCH_CUDA_INDEX:-https://download.pytorch.org/whl/cu128}"
1313
WHEEL_URL="https://github.com/plantcad/genecad/releases/download/v${GENECAD_VERSION}/genecad-${GENECAD_VERSION}-py3-none-any.whl"
1414

uv.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)