/* Light builtins's (config.h)
 * A lightweight repository of useful shell commands
 * GitHub: https://www.github.com/0x4248/light_builtins
 * Licence: GNU General Public License v3.0
 * By: 0x4248
 *
 * This file contains the configuration for the Light builtins project.
 * This is so that all the c and c++ can access things like the version number.
 */

#ifndef CONFIG_H
#define CONFIG_H

/* Version number configuration */
#define VERSION_MAJOR 1
#define VERSION_MINOR 2
#define VERSION_PATCH 1
#define EXTRA_VERSION "Hotfix"

#endif