1 /*
2  * Copyright (c) 2016-2021 Free Software Foundation, Inc.
3  *
4  * This file is part of libwget.
5  *
6  * Libwget is free software: you can redistribute it and/or modify
7  * it under the terms of the GNU Lesser General Public License as published by
8  * the Free Software Foundation, either version 3 of the License, or
9  * (at your option) any later version.
10  *
11  * Libwget is distributed in the hope that it will be useful,
12  * but WITHOUT ANY WARRANTY; without even the implied warranty of
13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14  * GNU Lesser General Public License for more details.
15  *
16  * You should have received a copy of the GNU Lesser General Public License
17  * along with libwget.  If not, see <https://www.gnu.org/licenses/>.
18  *
19  *
20  * Libwget version information
21  */
22 
23 #ifndef WGET_WGETVER_H
24 #define WGET_WGETVER_H
25 
26 #define LIBWGET_VERSION "2.0.0"
27 #define LIBWGET_VERSION_MAJOR 2
28 #define LIBWGET_VERSION_MINOR 0
29 #define LIBWGET_VERSION_PATCH 0
30 #define LIBWGET_VERSION_NUMBER 0x020000
31 
32 #endif /* WGET_WGETVER_H */
33