From 410cd04e63b5f62e666e88475f024b5eec4ac936 Mon Sep 17 00:00:00 2001 From: Dusan Gostimirovic Date: Sat, 26 Oct 2024 13:35:16 -0400 Subject: [PATCH] Bump 1.1.3 --- docs/CHANGELOG.md | 7 +++++++ prefab/__init__.py | 2 +- pyproject.toml | 2 +- 3 files changed, 9 insertions(+), 2 deletions(-) diff --git a/docs/CHANGELOG.md b/docs/CHANGELOG.md index c0bf37e..6ba3fe8 100644 --- a/docs/CHANGELOG.md +++ b/docs/CHANGELOG.md @@ -1,5 +1,12 @@ # Changelog +## [1.1.3](https://github.com/PreFab-Photonics/PreFab/releases/tag/v1.1.3) - 2024-10-26 + +- Moved prediction logic to `prefab.predict` module. +- First version of `predict.predict_array_with_grad`, which returns both the predicted array and its gradient. This is useful to fabrication-aware inverse design (FAID). More to come. +- Added `origin` parameter to GDS-related export methods. +- Small docstring fixes. + ## [1.1.2](https://github.com/PreFab-Photonics/PreFab/releases/tag/v1.1.2) - 2024-10-10 - User warning if `compare.intersection_over_union`, `compare.hamming_distance`, or `compare.dice_coefficient` are called with non-binarized devices. diff --git a/prefab/__init__.py b/prefab/__init__.py index 9311fbd..5848c36 100644 --- a/prefab/__init__.py +++ b/prefab/__init__.py @@ -5,7 +5,7 @@ import prefab as pf """ -__version__ = "1.1.2" +__version__ = "1.1.3" from . import compare, geometry, predict, read, shapes from .device import BufferSpec, Device diff --git a/pyproject.toml b/pyproject.toml index 29ead1c..43c384c 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "hatchling.build" [project] name = "prefab" -version = "1.1.2" +version = "1.1.3" description = "Artificial nanofabrication of integrated photonic circuits using deep learning" authors = [{ name = "Dusan Gostimirovic", email = "dusan@prefabphotonics.com" }] keywords = ["photonics", "nanofabrication", "machine-learning"]