Skip to content

Commit 59312e0

Browse files
authored
Merge pull request #263 from openfheorg/dev
Update to v1.4.2.0
2 parents 9f0d1b0 + b88d8fe commit 59312e0

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

CMakeLists.txt

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,13 +4,13 @@ project (OpenFHE-Python)
44

55
set(OPENFHE_PYTHON_VERSION_MAJOR 1)
66
set(OPENFHE_PYTHON_VERSION_MINOR 4)
7-
set(OPENFHE_PYTHON_VERSION_PATCH 1)
7+
set(OPENFHE_PYTHON_VERSION_PATCH 2)
88
set(OPENFHE_PYTHON_VERSION_TWEAK 0)
99
set(OPENFHE_PYTHON_VERSION ${OPENFHE_PYTHON_VERSION_MAJOR}.${OPENFHE_PYTHON_VERSION_MINOR}.${OPENFHE_PYTHON_VERSION_PATCH}.${OPENFHE_PYTHON_VERSION_TWEAK})
1010

11-
# OpenFHE version can be specified externally (-DOPENFHE_REQUIRED_VERSION=1.4.1)
11+
# OpenFHE version can be specified externally (-DOPENFHE_REQUIRED_VERSION=1.4.2)
1212
if(NOT DEFINED OPENFHE_REQUIRED_VERSION)
13-
set(OPENFHE_REQUIRED_VERSION "1.4.1" CACHE STRING "Required OpenFHE version")
13+
set(OPENFHE_REQUIRED_VERSION "1.4.2" CACHE STRING "Required OpenFHE version")
1414
else()
1515
# User provided OPENFHE_REQUIRED_VERSION via -D
1616
message(STATUS "Using user-specified OpenFHE version: ${OPENFHE_REQUIRED_VERSION}")

README.md

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

33
[![License](https://img.shields.io/badge/License-BSD%202--Clause-blue.svg)](https://opensource.org/licenses/BSD-2-Clause)
44
[![Python Versions](https://img.shields.io/badge/python-3.10%2B-blue)](https://www.python.org/)
5-
[![OpenFHE Version](https://img.shields.io/badge/OpenFHE-1.4.1%2B-green)](https://github.com/openfheorg/openfhe-development)
5+
[![OpenFHE Version](https://img.shields.io/badge/OpenFHE-1.4.2%2B-green)](https://github.com/openfheorg/openfhe-development)
66

77
Python wrapper for the main cryptographic capabilities of the OpenFHE C++ library. `OpenFHE-Python` provides a more user-friendly interface for Python developers, while keeping the efficiency of C++ FHE operations.
88

@@ -42,7 +42,7 @@ The legacy build instructions below are for other operating systems where [openf
4242

4343
Before building, make sure you have the following dependencies installed:
4444

45-
- [OpenFHE 1.4.1+](https://github.com/openfheorg/openfhe-development) by following the instructions in [OpenFHE Documentation](https://openfhe-development.readthedocs.io/en/latest/sphinx_rsts/intro/installation/installation.html)
45+
- [OpenFHE 1.4.2+](https://github.com/openfheorg/openfhe-development) by following the instructions in [OpenFHE Documentation](https://openfhe-development.readthedocs.io/en/latest/sphinx_rsts/intro/installation/installation.html)
4646
- [Python 3.10+](https://www.python.org/)
4747
- [pybind11](https://pybind11.readthedocs.io/en/stable/installing.html)
4848

docs/conf.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626
# The short X.Y version
2727
version = ''
2828
# The full version, including alpha/beta/rc tags
29-
release = 'v1.4.1.0'
29+
release = 'v1.4.2.0'
3030

3131

3232
# -- General configuration ---------------------------------------------------

0 commit comments

Comments
 (0)