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.

FlagDescription
--projectProject identifier — falls back to the default project of the active profile
--nameVersion name (required)
--statusStatus: open, locked, closed
--sharingSharing: none, descendants, hierarchy, tree, system
--due-dateDue date (YYYY-MM-DD or today)
--descriptionVersion description
--wiki-page-titleAssociated wiki page title
-o, --outputOutput 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]
FlagDescription
--projectProject identifier — falls back to the default project of the active profile
--statusFilter by status: open, locked, closed
--limitMaximum number of results
--offsetResult offset
-o, --outputOutput 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.

FlagDescription
--projectProject 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.

FlagDescription
--projectProject identifier (used for name resolution; falls back to the default project)
--nameNew version name
--statusNew status: open, locked, closed
--sharingNew sharing: none, descendants, hierarchy, tree, system
--due-dateNew due date (YYYY-MM-DD or today)
--descriptionNew version description
--wiki-page-titleNew 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.

FlagDescription
--projectProject identifier (used for name resolution; falls back to the default project)
--forceDelete without asking for confirmation
Terminal window
redmine versions delete 42
redmine versions delete 1.2.0 --project myproject --force