Skip to content

Commit 4ca559a

Browse files
committed
Release v0.1.0
1 parent b751541 commit 4ca559a

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ cmake_minimum_required( VERSION 3.5 FATAL_ERROR )
1111

1212
project(
1313
bit_lite
14-
VERSION 0.2.0
14+
VERSION 0.1.0
1515
# 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"
1616
# HOMEPAGE_URL "https://github.com/martinmoene/bit-lite"
1717
LANGUAGES CXX )

include/nonstd/bit.hpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
#define NONSTD_BIT_LITE_HPP
1111

1212
#define bit_lite_MAJOR 0
13-
#define bit_lite_MINOR 0
13+
#define bit_lite_MINOR 1
1414
#define bit_lite_PATCH 0
1515

1616
#define bit_lite_VERSION bit_STRINGIFY(bit_lite_MAJOR) "." bit_STRINGIFY(bit_lite_MINOR) "." bit_STRINGIFY(bit_lite_PATCH)

0 commit comments

Comments
 (0)