aboutsummaryrefslogtreecommitdiff
path: root/thcolor/version.py
blob: 5a3a5fc8cb482bfed95f6b3e4eff0ded92a20c0e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
#!/usr/bin/env python3
# *****************************************************************************
# Copyright (C) 2021-2022 Thomas "Cakeisalie5" Touhey <thomas@touhey.fr>
# This file is part of the thcolor project, which is MIT-licensed.
# *****************************************************************************
""" Version definition for the thcolor module. """

__all__ = ['version']

version = '0.4'

# End of file.