Skip to content

Commit bdbfbe6

Browse files
yspolyakovYuriy Polyakovdsuponitskiy
authored
updated the release (#259)
* updated the release * Update README.md * Update CMakeLists.txt --------- Co-authored-by: Yuriy Polyakov <[email protected]> Co-authored-by: dsuponitskiy <[email protected]>
1 parent 374db13 commit bdbfbe6

File tree

3 files changed

+14
-8
lines changed

3 files changed

+14
-8
lines changed

CMakeLists.txt

Lines changed: 4 additions & 4 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 0)
8-
set(OPENFHE_PYTHON_VERSION_TWEAK 1)
7+
set(OPENFHE_PYTHON_VERSION_PATCH 1)
8+
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.0)
11+
# OpenFHE version can be specified externally (-DOPENFHE_REQUIRED_VERSION=1.4.1)
1212
if(NOT DEFINED OPENFHE_REQUIRED_VERSION)
13-
set(OPENFHE_REQUIRED_VERSION "1.4.0" CACHE STRING "Required OpenFHE version")
13+
set(OPENFHE_REQUIRED_VERSION "1.4.1" 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: 9 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,10 @@
1-
# Official Python wrapper for OpenFHE
1+
# OpenFHE-Python
2+
3+
[![License](https://img.shields.io/badge/License-BSD%202--Clause-blue.svg)](https://opensource.org/licenses/BSD-2-Clause)
4+
[![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)
6+
7+
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.
28

39
## Table of Contents
410

@@ -36,8 +42,8 @@ The legacy build instructions below are for other operating systems where [openf
3642

3743
Before building, make sure you have the following dependencies installed:
3844

39-
- [OpenFHE 1.4.0+](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)
40-
- [Python 3.6+](https://www.python.org/)
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)
46+
- [Python 3.10+](https://www.python.org/)
4147
- [pybind11](https://pybind11.readthedocs.io/en/stable/installing.html)
4248

4349
We recommend following OpenFHE C++ installation instructions first (which covers Linux, Windows and MacOS) and then getting back to this repo. See notes on installing `pybind11` below

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.3.1.0'
29+
release = 'v1.4.1.0'
3030

3131

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

0 commit comments

Comments
 (0)