File tree Expand file tree Collapse file tree 7 files changed +14
-13
lines changed
Expand file tree Collapse file tree 7 files changed +14
-13
lines changed Original file line number Diff line number Diff line change 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
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}")
Original file line number Diff line number Diff line change @@ -2,7 +2,7 @@ cff-version: 1.2.0
22message : " If you use VCF-RDFizer in your research, please cite it using the metadata below."
33title : " VCF-RDFizer"
44type : software
5- version : " 1.0 .0"
5+ version : " 1.1 .0"
66authors :
77 - name : " VCF-RDFizer maintainers"
88repository-code : " https://github.com/ecrum19/VCF-RDFizer"
Original file line number Diff line number Diff line change @@ -237,7 +237,7 @@ Safe termination:
237237
238238If 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
242242BibTeX:
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}
Original file line number Diff line number Diff 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 ` ).
882 . 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 ```
14143 . Replace ` version ` and ` sha256 ` in ` meta.yaml ` .
Original file line number Diff line number Diff line change 11{% set name = "vcf-rdfizer" %}
2- {% set version = "1.0 .0" %}
2+ {% set version = "1.1 .0" %}
33{% set python_min = "3.10" %}
44
55package :
88
99source :
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
1314build :
1415 noarch : python
Original file line number Diff line number Diff line change @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
44
55[project ]
66name = " vcf-rdfizer"
7- version = " 1.0 .0"
7+ version = " 1.1 .0"
88description = " Docker-first VCF to RDF conversion wrapper with compression/decompression modes"
99readme = " README.md"
1010requires-python = " >=3.10"
Original file line number Diff line number Diff 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 ):
You can’t perform that action at this time.
0 commit comments