From f01239040ad4f453b7dca1d562ab2139d5ec2fab Mon Sep 17 00:00:00 2001 From: Uditha Atukorala Date: Sun, 22 Sep 2024 10:35:48 +0100 Subject: [PATCH] version 0.4.0 --- CMakeLists.txt | 4 ++-- changelog.md | 14 ++++++++++++++ 2 files changed, 16 insertions(+), 2 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 23a1369..f7c4a99 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -1,7 +1,7 @@ cmake_minimum_required(VERSION 3.27) -project(grpcxx VERSION 0.3.0 LANGUAGES CXX) +project(grpcxx VERSION 0.4.0 LANGUAGES CXX) -cmake_policy(SET CMP0135 NEW) # CMake 3.24 +cmake_policy(SET CMP0135 NEW) # CMake 3.24 cmake_policy(SET CMP0144 NEW) # CMake 3.27 set(CMAKE_CXX_STANDARD 20) diff --git a/changelog.md b/changelog.md index 231cbbe..1df8f11 100644 --- a/changelog.md +++ b/changelog.md @@ -1,5 +1,19 @@ # Changelog +## v0.4.0 - 22nd September, 2024 + +### 🔦 Spotlight +Fix header file include order to help with consistent compilations across different platforms and compilers (https://github.com/uatuko/grpcxx/pull/39). + +### What's Changed +* Fix ordering of include files by @tchernobog in https://github.com/uatuko/grpcxx/pull/39 + +### New Contributors +* @tchernobog + +**Full Changelog**: https://github.com/uatuko/grpcxx/compare/v0.3.0...v.0.4.0 + + ## v0.3.0 - 13th June, 2024 ### 🔦 Spotlight