Skip to content

Commit 220b6f8

Browse files
committed
Bump version to 1.0.2
- Add compiler version validation to Conan recipe - Require GCC 13+, Clang 14+, or MSVC 19.29+ for std::format support - Update CHANGELOG with correct compiler requirements
1 parent 617b349 commit 220b6f8

File tree

3 files changed

+8
-4
lines changed

3 files changed

+8
-4
lines changed

CHANGELOG.md

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,11 @@
22

33
All notable changes to this project will be documented in this file.
44

5-
## [1.0.1] - Unreleased
5+
## [1.0.2] - Unreleased
6+
7+
- Added compiler version validation to Conan recipe (requires GCC 13+, Clang 14+, or MSVC 19.29+ for std::format support)
8+
9+
## [1.0.1] - 2025-11-05
610

711
- Prepared for Conan Center
812

@@ -23,7 +27,7 @@ All notable changes to this project will be documented in this file.
2327

2428
- **C++ Standard**: Requires C++20 or later
2529
- Minimum compiler versions:
26-
- GCC 11+
30+
- GCC 13+ (for std::format support)
2731
- Clang 14+
2832
- MSVC 2019+ (19.29+) with `/std:c++20` or later
2933
- **InfluxDB Compatibility**: Supports InfluxDB 1.x (tested with v1.8+)

CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ cmake_minimum_required(VERSION 3.20)
22

33
project(
44
influxdb-cpp-rest
5-
VERSION 1.0.1
5+
VERSION 1.0.2
66
LANGUAGES CXX
77
DESCRIPTION "A C++ client library for InfluxDB using C++ REST SDK"
88
)

conanfile.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
class InfluxdbCppRestConan(ConanFile):
66
name = "influxdb-cpp-rest"
7-
version = "1.0.1"
7+
version = "1.0.2"
88
license = "MPL-2.0"
99
author = "Dmitry Ledentsov"
1010
url = "https://github.com/d-led/influxdb-cpp-rest"

0 commit comments

Comments
 (0)