Add Github workflows for CI and PRs.
[mailpopbox.git] / version.go
1 // mailpopbox
2 // Copyright 2020 Blue Static <https://www.bluestatic.org>
3 // This program is free software licensed under the GNU General Public License,
4 // version 3.0. The full text of the license can be found in LICENSE.txt.
5 // SPDX-License-Identifier: GPL-3.0-only
6
7 package main
8
9 var (
10 versionGit = "development"
11 versionNumber = "2.0.0"
12 versionString = "mailpopbox " + versionNumber + " (" + versionGit + ")\n"
13 )