Skip to content

Commit 73397b6

Browse files
committed
Release 1.2.0 - make endian extension functions noexcept
Similarly to byteswap().
1 parent 3781e19 commit 73397b6

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.15 FATAL_ERROR )
1111

1212
project(
1313
bit_lite
14-
VERSION 1.1.0
14+
VERSION 1.2.0
1515
# DESCRIPTION "A C++20-like bit, bit operations for C++98 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 1
13-
#define bit_lite_MINOR 1
13+
#define bit_lite_MINOR 2
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)