From e54fb382dce712e2817a19511684f2246cfa012a Mon Sep 17 00:00:00 2001 From: Trevor Laughlin Date: Tue, 25 May 2021 06:01:46 -0400 Subject: [PATCH] Bump to version 7.5.1.1 [skip ci] --- CMakeLists.txt | 4 ++-- OCCT/__init__.py | 2 +- ci/conda/meta.yaml | 2 +- setup.py | 2 +- 4 files changed, 5 insertions(+), 5 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index f02015b8..1adf6cd4 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -18,7 +18,7 @@ # License along with this library; if not, write to the Free Software # Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA cmake_minimum_required(VERSION 3.15...3.20) -project(pyOCCT VERSION 7.5.1.0 LANGUAGES C CXX) +project(pyOCCT VERSION 7.5.1.1 LANGUAGES C CXX) # --------------------------------------------------------------------------- # @@ -33,7 +33,7 @@ option(ENABLE_WARNINGS "Disable warning output." OFF) set(pyOCCT_MAJOR_VERSION 7) set(pyOCCT_MINOR_VERSION 5) set(pyOCCT_PATCH_VERSION 1) -set(pyOCCT_TWEAK_VERSION 0) +set(pyOCCT_TWEAK_VERSION 1) if(WIN32) set(EXTENSION ".pyd") diff --git a/OCCT/__init__.py b/OCCT/__init__.py index 1c9efa0d..ec6d1513 100644 --- a/OCCT/__init__.py +++ b/OCCT/__init__.py @@ -17,4 +17,4 @@ # You should have received a copy of the GNU Lesser General Public # License along with this library; if not, write to the Free Software # Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA -__version__ = '7.5.1.0' +__version__ = '7.5.1.1' diff --git a/ci/conda/meta.yaml b/ci/conda/meta.yaml index 8d237105..46b3078e 100644 --- a/ci/conda/meta.yaml +++ b/ci/conda/meta.yaml @@ -1,6 +1,6 @@ package: name: pyocct - version: 7.5.1.0 + version: 7.5.1.1 source: path: ../.. diff --git a/setup.py b/setup.py index cffe40c1..2c936d8b 100644 --- a/setup.py +++ b/setup.py @@ -2,7 +2,7 @@ setup( name='OCCT', - version='7.5.1.0', + version='7.5.1.1', packages=['OCCT', 'OCCT.Exchange', 'OCCT.Visualization'], package_data={'OCCT': ['*.so', '*.pyd', '*.dll', 'Visualization/_resources/*']}, author='Trevor Laughlin',