Skip to content

Commit

Permalink
chore: prepare release 1.5.0
Browse files Browse the repository at this point in the history
  • Loading branch information
RomanBredehoft committed Apr 5, 2024
1 parent 68b419b commit 4ebf5c6
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 9 deletions.
2 changes: 1 addition & 1 deletion docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
root_url = root_url if root_url.endswith("/") else root_url + "/"

# The full version, including alpha/beta/rc tags
release = "1.5.0-rc1"
release = "1.5.0"


# -- General configuration ---------------------------------------------------
Expand Down
16 changes: 10 additions & 6 deletions docs/references/api/concrete.ml.pandas.dataframe.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,15 +6,19 @@

Define the encrypted data-frame framework.

## **Global Variables**

- **ZIP_STORED**

______________________________________________________________________

<a href="../../../src/concrete/ml/pandas/dataframe.py#L26"><img align="right" style="float:right;" src="https://img.shields.io/badge/-source-cccccc?style=flat-square"></a>
<a href="../../../src/concrete/ml/pandas/dataframe.py#L27"><img align="right" style="float:right;" src="https://img.shields.io/badge/-source-cccccc?style=flat-square"></a>

## <kbd>class</kbd> `EncryptedDataFrame`

Define an encrypted data-frame framework that supports Pandas operators and parameters.

<a href="../../../src/concrete/ml/pandas/dataframe.py#L29"><img align="right" style="float:right;" src="https://img.shields.io/badge/-source-cccccc?style=flat-square"></a>
<a href="../../../src/concrete/ml/pandas/dataframe.py#L30"><img align="right" style="float:right;" src="https://img.shields.io/badge/-source-cccccc?style=flat-square"></a>

### <kbd>method</kbd> `__init__`

Expand Down Expand Up @@ -101,7 +105,7 @@ Get the evaluation keys.

______________________________________________________________________

<a href="../../../src/concrete/ml/pandas/dataframe.py#L132"><img align="right" style="float:right;" src="https://img.shields.io/badge/-source-cccccc?style=flat-square"></a>
<a href="../../../src/concrete/ml/pandas/dataframe.py#L133"><img align="right" style="float:right;" src="https://img.shields.io/badge/-source-cccccc?style=flat-square"></a>

### <kbd>method</kbd> `get_schema`

Expand All @@ -119,7 +123,7 @@ The scheme can include column names, dtypes or dtype mappings. It is displayed a

______________________________________________________________________

<a href="../../../src/concrete/ml/pandas/dataframe.py#L325"><img align="right" style="float:right;" src="https://img.shields.io/badge/-source-cccccc?style=flat-square"></a>
<a href="../../../src/concrete/ml/pandas/dataframe.py#L334"><img align="right" style="float:right;" src="https://img.shields.io/badge/-source-cccccc?style=flat-square"></a>

### <kbd>classmethod</kbd> `load`

Expand All @@ -139,7 +143,7 @@ Load an encrypted data-frame from disk.

______________________________________________________________________

<a href="../../../src/concrete/ml/pandas/dataframe.py#L170"><img align="right" style="float:right;" src="https://img.shields.io/badge/-source-cccccc?style=flat-square"></a>
<a href="../../../src/concrete/ml/pandas/dataframe.py#L171"><img align="right" style="float:right;" src="https://img.shields.io/badge/-source-cccccc?style=flat-square"></a>

### <kbd>method</kbd> `merge`

Expand Down Expand Up @@ -189,7 +193,7 @@ Pandas documentation for version 2.0 can be found here: https://pandas.pydata.or

______________________________________________________________________

<a href="../../../src/concrete/ml/pandas/dataframe.py#L313"><img align="right" style="float:right;" src="https://img.shields.io/badge/-source-cccccc?style=flat-square"></a>
<a href="../../../src/concrete/ml/pandas/dataframe.py#L315"><img align="right" style="float:right;" src="https://img.shields.io/badge/-source-cccccc?style=flat-square"></a>

### <kbd>method</kbd> `save`

Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "concrete-ml"
version = "1.5.0-rc1"
version = "1.5.0"
description = "Concrete ML is an open-source set of tools which aims to simplify the use of fully homomorphic encryption (FHE) for data scientists."
license = "BSD-3-Clause-Clear"
authors = [
Expand Down
2 changes: 1 addition & 1 deletion src/concrete/ml/version.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
"""File to manage the version of the package."""
# Auto-generated by "make set_version" do not modify
__version__ = "1.5.0-rc1"
__version__ = "1.5.0"

0 comments on commit 4ebf5c6

Please sign in to comment.