Skip to content

Versions

The versions command (alias v) manages project versions — the Redmine equivalent of milestones.

Terminal window
redmine versions create --name <name> [flags]

Aliases: new.

Flag Description
--project Project identifier — falls back to the default project of the active profile
--name Version name (required)
--status Status: open, locked, closed
--sharing Sharing: none, descendants, hierarchy, tree, system
--due-date Due date (YYYY-MM-DD or today)
--description Version description
--wiki-page-title Associated wiki page title
-o, --output Output format
Terminal window
redmine versions create --project myproject --name 1.2.0 --due-date 2026-06-30
Terminal window
redmine versions list --project <identifier> [flags]
Flag Description
--project Project identifier — falls back to the default project of the active profile
--status Filter by status: open, locked, closed
--limit Maximum number of results
--offset Result offset
-o, --output Output format
Terminal window
redmine versions list --project myproject --status open
Terminal window
redmine versions get <id-or-name> [flags]

Aliases: show, view. Accepts a numeric ID or a version name.

Flag Description
--project Project identifier (used for name resolution; falls back to the default project)
Terminal window
redmine versions update <id-or-name> [flags]

Aliases: edit. Accepts a numeric ID or a version name.

Flag Description
--project Project identifier (used for name resolution; falls back to the default project)
--name New version name
--status New status: open, locked, closed
--sharing New sharing: none, descendants, hierarchy, tree, system
--due-date New due date (YYYY-MM-DD or today)
--description New version description
--wiki-page-title New associated wiki page title
Terminal window
redmine versions update 42 --status closed
redmine versions update 1.2.0 --project myproject --due-date 2026-07-15
Terminal window
redmine versions delete <id-or-name> [flags]

Aliases: rm. Accepts a numeric ID or a version name.

Flag Description
--project Project identifier (used for name resolution; falls back to the default project)
--force Delete without asking for confirmation
Terminal window
redmine versions delete 42
redmine versions delete 1.2.0 --project myproject --force