Skip to content

Commit 51ccbab

Browse files
committed
Bump version to 1.1.0
1 parent fb48e50 commit 51ccbab

File tree

7 files changed

+14
-13
lines changed

7 files changed

+14
-13
lines changed

.github/workflows/publish-docker.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ on:
99
workflow_dispatch:
1010
inputs:
1111
docker_tag:
12-
description: "Optional explicit Docker tag (example: v1.0.6)"
12+
description: "Optional explicit Docker tag (example: v1.1.1)"
1313
required: false
1414
type: string
1515

@@ -71,7 +71,7 @@ jobs:
7171
ref_name = os.environ.get("GITHUB_REF_NAME", "")
7272
head_message = os.environ.get("HEAD_COMMIT_MESSAGE", "")
7373
manual_tag = os.environ.get("INPUT_DOCKER_TAG", "").strip()
74-
pattern = re.compile(r"^v1\.0\.(\d+)$")
74+
pattern = re.compile(r"^v1\.1\.(\d+)$")
7575
major_release_pattern = re.compile(r"^v\d+\.0\.0$")
7676
explicit_from_commit = re.search(r"\[(?:publish-docker|docker)=([A-Za-z0-9_.-]+)\]", head_message)
7777
@@ -102,7 +102,7 @@ jobs:
102102
except Exception:
103103
tags = subprocess.check_output(["git", "tag"], text=True).splitlines()
104104
max_n = max(max_n, parse_max(tags))
105-
resolved_tag = f"v1.0.{max_n + 1}"
105+
resolved_tag = f"v1.1.{max_n + 1}"
106106
107107
if not re.match(r"^[A-Za-z0-9_.-]+$", resolved_tag):
108108
raise SystemExit(f"Invalid Docker tag: {resolved_tag}")

CITATION.cff

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ cff-version: 1.2.0
22
message: "If you use VCF-RDFizer in your research, please cite it using the metadata below."
33
title: "VCF-RDFizer"
44
type: software
5-
version: "1.0.0"
5+
version: "1.1.0"
66
authors:
77
- name: "VCF-RDFizer maintainers"
88
repository-code: "https://github.com/ecrum19/VCF-RDFizer"

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -237,7 +237,7 @@ Safe termination:
237237

238238
If you use VCF-RDFizer in a publication, please cite:
239239

240-
VCF-RDFizer maintainers. (2026). *VCF-RDFizer* (Version 1.0.0) [Computer software]. GitHub. https://github.com/ecrum19/VCF-RDFizer
240+
VCF-RDFizer maintainers. (2026). *VCF-RDFizer* (Version 1.1.0) [Computer software]. GitHub. https://github.com/ecrum19/VCF-RDFizer
241241

242242
BibTeX:
243243

@@ -246,7 +246,7 @@ BibTeX:
246246
author = {{VCF-RDFizer maintainers}},
247247
title = {VCF-RDFizer},
248248
year = {2026},
249-
version = {1.0.0},
249+
version = {1.1.0},
250250
url = {https://github.com/ecrum19/VCF-RDFizer},
251251
note = {Computer software}
252252
}

conda-recipe/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,11 +4,11 @@ This directory contains a starter `meta.yaml` for publishing `vcf-rdfizer` on co
44

55
## Before submitting to conda-forge
66

7-
1. Create a GitHub release/tag (for example `v1.0.0`).
7+
1. Create a GitHub release/tag (for example `v1.1.0`).
88
2. Download the source tarball and compute sha256:
99
```bash
1010
curl -L -o vcf-rdfizer.tar.gz \
11-
https://github.com/ecrum19/VCF-RDFizer/archive/refs/tags/v1.0.0.tar.gz
11+
https://github.com/ecrum19/VCF-RDFizer/archive/refs/tags/v1.1.0.tar.gz
1212
shasum -a 256 vcf-rdfizer.tar.gz
1313
```
1414
3. Replace `version` and `sha256` in `meta.yaml`.

conda-recipe/meta.yaml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{% set name = "vcf-rdfizer" %}
2-
{% set version = "1.0.0" %}
2+
{% set version = "1.1.0" %}
33
{% set python_min = "3.10" %}
44

55
package:
@@ -8,7 +8,8 @@ package:
88

99
source:
1010
url: https://github.com/ecrum19/VCF-RDFizer/archive/refs/tags/v{{ version }}.tar.gz
11-
sha256: 958fd83c06aed34c9ef8f338f90fea07f4422017e6c45dead4dd3a1f1fee0ecc
11+
# Replace after creating the v1.1.0 GitHub tag.
12+
sha256: REPLACE_WITH_V1_1_0_GITHUB_TARBALL_SHA256
1213

1314
build:
1415
noarch: python

pyproject.toml

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

55
[project]
66
name = "vcf-rdfizer"
7-
version = "1.0.0"
7+
version = "1.1.0"
88
description = "Docker-first VCF to RDF conversion wrapper with compression/decompression modes"
99
readme = "README.md"
1010
requires-python = ">=3.10"

test/test_vcf_rdfizer_cross_platform_unit.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -45,8 +45,8 @@ def test_help_flag_prints_usage(self):
4545

4646
def test_resolve_image_ref_with_version(self):
4747
"""Image repository + explicit version resolves to a tagged image."""
48-
image, requested = vcf_rdfizer.resolve_image_ref("ecrum19/vcf-rdfizer", "1.0.0")
49-
self.assertEqual(image, "ecrum19/vcf-rdfizer:1.0.0")
48+
image, requested = vcf_rdfizer.resolve_image_ref("ecrum19/vcf-rdfizer", "1.1.0")
49+
self.assertEqual(image, "ecrum19/vcf-rdfizer:1.1.0")
5050
self.assertTrue(requested)
5151

5252
def test_success_symbol_falls_back_for_cp1252_console(self):

0 commit comments

Comments
 (0)