Skip to content
Open
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
4 changes: 3 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
## Unreleased
# Changelog

## v0.26.0

### Breaking change

Expand Down
4 changes: 2 additions & 2 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion crates/hyperqueue/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "hyperqueue"
version = "0.25.0"
version = "0.26.0"
description = "Task execution system for clusters"
authors.workspace = true
edition.workspace = true
Expand Down
2 changes: 1 addition & 1 deletion crates/pyhq/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "pyhq"
version = "0.25.0"
version = "0.26.0"
authors.workspace = true
edition.workspace = true
rust-version.workspace = true
Expand Down
2 changes: 1 addition & 1 deletion nedoc.conf
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

[main]
project_name = hyperqueue
project_version = 0.25.0
project_version = 0.26.0

source_path = crates/pyhq/python/hyperqueue
target_path = ./docs/apidoc
Expand Down
1 change: 1 addition & 0 deletions scripts/print_vers.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,3 +19,4 @@ def check_file(path, prefix, case_sensitive=False):
check_file("crates/pyhq/Cargo.toml", "version")
check_file("nedoc.conf", "project_version")
check_file("CHANGELOG.md", "# dev", case_sensitive=True)
check_file("CHANGELOG.md", "## Unreleased")
Loading