diff --git a/CMakeLists.txt b/CMakeLists.txt index 6976eaf..514f773 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -11,7 +11,7 @@ cmake_minimum_required( VERSION 3.5 FATAL_ERROR ) project( bit_lite - VERSION 0.2.0 + VERSION 0.1.0 # DESCRIPTION "A C++17-like bit, a type-safe container for single values of bit type for C++98, C++11 and later in a single-file header-only library" # HOMEPAGE_URL "https://github.com/martinmoene/bit-lite" LANGUAGES CXX ) diff --git a/include/nonstd/bit.hpp b/include/nonstd/bit.hpp index b91edcb..a0ce55b 100644 --- a/include/nonstd/bit.hpp +++ b/include/nonstd/bit.hpp @@ -10,7 +10,7 @@ #define NONSTD_BIT_LITE_HPP #define bit_lite_MAJOR 0 -#define bit_lite_MINOR 0 +#define bit_lite_MINOR 1 #define bit_lite_PATCH 0 #define bit_lite_VERSION bit_STRINGIFY(bit_lite_MAJOR) "." bit_STRINGIFY(bit_lite_MINOR) "." bit_STRINGIFY(bit_lite_PATCH)