Skip to content

Commit eb046b3

Browse files
committed
Release 1.0.0 - Adds C++23 byteswap()
1 parent 860aab0 commit eb046b3

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
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 0.1.0
14+
VERSION 1.0.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 )

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# bit-lite - C++20 bit operations for C++98 and later in a single-file header-only library.
1+
# bit-lite - C++20/C++23 bit operations for C++98 and later in a single-file header-only library.
22

33
[![Language](https://img.shields.io/badge/C%2B%2B-98/11+-blue.svg)](https://en.wikipedia.org/wiki/C%2B%2B#Standardization) [![License](https://img.shields.io/badge/license-BSL-blue.svg)](https://opensource.org/licenses/BSL-1.0) [![Build Status](https://github.com/martinmoene/bit-lite/actions/workflows/ci.yml/badge.svg)](https://github.com/martinmoene/bit-lite/actions/workflows/ci.yml) [![Version](https://badge.fury.io/gh/martinmoene%2Fbit-lite.svg)](https://github.com/martinmoene/bit-lite/releases) [![download](https://img.shields.io/badge/latest-download-blue.svg)](https://raw.githubusercontent.com/martinmoene/bit-lite/master/include/nonstd/bit.hpp) [![Repology](https://img.shields.io/badge/on-repology-blue.svg)](https://repology.org/projects/?search=bit-lite) [![Conan](https://img.shields.io/badge/on-conan-blue.svg)](https://conan.io/center/bit-lite) [![Try it online](https://img.shields.io/badge/on-wandbox-blue.svg)](https://wandbox.org/permlink/ZwnY4c9dZUAynUac) [![Try it on godbolt online](https://img.shields.io/badge/on-godbolt-blue.svg)](https://godbolt.org/z/1IPvn7)
44

include/nonstd/bit.hpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,8 @@
99
#ifndef NONSTD_BIT_LITE_HPP
1010
#define NONSTD_BIT_LITE_HPP
1111

12-
#define bit_lite_MAJOR 0
13-
#define bit_lite_MINOR 1
12+
#define bit_lite_MAJOR 1
13+
#define bit_lite_MINOR 0
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)