# libtmux._vendor.version.Version.post

- **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#L329
- **Page:** https://libtmux.org/reference/py/libtmux-_vendor-version-version-post/

```
libtmux._vendor.version.Version.post(self) -> int | None
```

The post-release number of the version.

>>> print(Version("1.2.3").post)
None
>>> Version("1.2.3.post1").post
1
