Skip to content

Commit dd5b382

Browse files
committed
Release 0.3.0
1 parent 95b9aac commit dd5b382

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
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
byte_lite
14-
VERSION 0.2.0
14+
VERSION 0.3.0
1515
# DESCRIPTION "A C++17-like byte type for C++98, C++11 and later in a single-file header-only library"
1616
# HOMEPAGE_URL "https://github.com/martinmoene/byte-lite"
1717
LANGUAGES CXX )

conanfile.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
from conans import ConanFile, CMake
22

33
class ByteLiteConan(ConanFile):
4-
version = "0.2.0"
4+
version = "0.3.0"
55
name = "byte-lite"
66
description = "byte"
77
license = "Boost Software License - Version 1.0. http://www.boost.org/LICENSE_1_0.txt"

include/nonstd/byte.hpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
#define NONSTD_BYTE_LITE_HPP
1414

1515
#define byte_lite_MAJOR 0
16-
#define byte_lite_MINOR 2
16+
#define byte_lite_MINOR 3
1717
#define byte_lite_PATCH 0
1818

1919
#define byte_lite_VERSION byte_STRINGIFY(byte_lite_MAJOR) "." byte_STRINGIFY(byte_lite_MINOR) "." byte_STRINGIFY(byte_lite_PATCH)

0 commit comments

Comments
 (0)