From 82adacb31de4d24983e240a60d608dfaed464d1a Mon Sep 17 00:00:00 2001 From: Henry Schreiner Date: Tue, 3 Aug 2021 15:20:23 -0400 Subject: [PATCH] fix: include hex version in bump --- include/pybind11/detail/common.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/pybind11/detail/common.h b/include/pybind11/detail/common.h index 1d771433..b9185840 100644 --- a/include/pybind11/detail/common.h +++ b/include/pybind11/detail/common.h @@ -15,7 +15,7 @@ // Similar to Python's convention: https://docs.python.org/3/c-api/apiabiversion.html // Additional convention: 0xD = dev -#define PYBIND11_VERSION_HEX 0x020701D1 +#define PYBIND11_VERSION_HEX 0x02070100 #define PYBIND11_NAMESPACE_BEGIN(name) namespace name { #define PYBIND11_NAMESPACE_END(name) }