# libtmux._vendor.version.Version.release

- **Module:** libtmux._vendor.version.Version
- **Package:** libtmux
- **Language:** Python
- **Kind:** property
- **Source:** https://github.com/tmux-python/libtmux/blob/036c521c4b83ce6e434eb50afe2a0d08a6a05e46/src/libtmux/_vendor/version.py#L296
- **Page:** https://libtmux.org/reference/py/libtmux-_vendor-version-version-release/

```
libtmux._vendor.version.Version.release(self) -> tuple[int, ...]
```

The components of the "release" segment of the version.

>>> Version("1.2.3").release
(1, 2, 3)
>>> Version("2.0.0").release
(2, 0, 0)
>>> Version("1!2.0.0.post0").release
(2, 0, 0)

Includes trailing zeroes but not the epoch or any pre-release / development /
post-release suffixes.
