Skip to content

chore(main): release 1.2.13 #288

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
May 16, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# Changelog

## [1.2.13](https://github.com/snakemake/snakemake-executor-plugin-slurm/compare/v1.2.12...v1.2.13) (2025-05-16)

Comment on lines +3 to +4
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

💡 Verification agent

🧩 Analysis chain

Verify GitHub compare link.

Ensure the comparison URL resolves successfully:


🏁 Script executed:

#!/bin/bash
# Check HTTP status of the compare URL for v1.2.12...v1.2.13
curl -s -o /dev/null -w "%{http_code}" "https://github.com/snakemake/snakemake-executor-plugin-slurm/compare/v1.2.12...v1.2.13"

Length of output: 131


Let's verify that both tags exist on GitHub before fixing the link.


🏁 Script executed:

#!/bin/bash
# List remote tags and filter for v1.2.12 and v1.2.13
git ls-remote --tags https://github.com/snakemake/snakemake-executor-plugin-slurm.git \
  | grep -E 'v1\.2\.12|v1\.2\.13'

Length of output: 178


Fix broken GitHub compare link in CHANGELOG.md

The compare URL is returning 404 because the v1.2.13 tag hasn’t been pushed to GitHub yet. Please create and push that tag (or update the link once the tag exists) so the comparison resolves correctly.

Locations to update:

  • CHANGELOG.md (Lines 3–4)

Suggested steps:

  1. Locally create the v1.2.13 tag, if not done:
    git tag v1.2.13
  2. Push the tag:
    git push origin v1.2.13
  3. Verify the link now returns HTTP 200:
    curl -o /dev/null -s -w "%{http_code}" \
      https://github.com/snakemake/snakemake-executor-plugin-slurm/compare/v1.2.12...v1.2.13
  4. Confirm CHANGELOG.md’s compare URL resolves successfully.
🤖 Prompt for AI Agents
In CHANGELOG.md around lines 3 to 4, the GitHub compare link for version 1.2.13
is broken because the v1.2.13 tag has not been pushed to the remote repository.
To fix this, locally create the v1.2.13 tag if it doesn't exist, push the tag to
the remote repository, and then verify that the compare URL returns HTTP 200 to
ensure the link resolves correctly.


### Bug Fixes

* pr title ([#287](https://github.com/snakemake/snakemake-executor-plugin-slurm/issues/287)) ([a3a548c](https://github.com/snakemake/snakemake-executor-plugin-slurm/commit/a3a548c85229f7b301c6f9597e25b78d1abd77e4))

## [1.2.12](https://github.com/snakemake/snakemake-executor-plugin-slurm/compare/v1.2.11...v1.2.12) (2025-05-16)


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 = "snakemake-executor-plugin-slurm"
version = "1.2.12"
version = "1.2.13"
description = "A Snakemake executor plugin for submitting jobs to a SLURM cluster."
authors = [
"Christian Meesters <meesters@uni-mainz.de>",
Expand Down