From 5d9b3307e0befa97bbe66663b4258b2a9841fb90 Mon Sep 17 00:00:00 2001 From: Dusan Gostimirovic Date: Fri, 1 Nov 2024 12:16:04 -0400 Subject: [PATCH] Bump 1.1.4 --- docs/CHANGELOG.md | 7 ++++++- prefab/__init__.py | 2 +- pyproject.toml | 2 +- 3 files changed, 8 insertions(+), 3 deletions(-) diff --git a/docs/CHANGELOG.md b/docs/CHANGELOG.md index 6ba3fe8..b3e1f01 100644 --- a/docs/CHANGELOG.md +++ b/docs/CHANGELOG.md @@ -1,5 +1,10 @@ # Changelog +## [1.1.4](https://github.com/PreFab-Photonics/PreFab/releases/tag/v1.1.4) - 2024-11-01 + +- Added custom vector-Jacobian product (VJP) for the `predict.predict_array_with_grad` function. +- Changed some of the docstrings in `prefab.predict` to be more consistent and clear. + ## [1.1.3](https://github.com/PreFab-Photonics/PreFab/releases/tag/v1.1.3) - 2024-10-26 - Moved prediction logic to `prefab.predict` module. @@ -19,7 +24,7 @@ ## [1.1.1](https://github.com/PreFab-Photonics/PreFab/releases/tag/v1.1.1) - 2024-09-24 -- Manually adding small random noise to the semulated images to better match the real data. This is ideally included in the model training, but for now this is a quick fix. +- Manually adding small random noise to the "SEMulated" images to better match the real data. This is ideally included in the model training, but for now this is a quick fix. - Added z-padding to the device array before exporting to STL with `Device.to_stl` to ensure that the exported device is closed. - Removed buffer from `Device.device_array` before exporting to with `Device.to_gdsfactory`. - The additions from `1.0.3` and `1.0.4` releases, which should be considered part of this release. Release planning a work in progress. diff --git a/prefab/__init__.py b/prefab/__init__.py index 5848c36..669befd 100644 --- a/prefab/__init__.py +++ b/prefab/__init__.py @@ -5,7 +5,7 @@ import prefab as pf """ -__version__ = "1.1.3" +__version__ = "1.1.4" from . import compare, geometry, predict, read, shapes from .device import BufferSpec, Device diff --git a/pyproject.toml b/pyproject.toml index 43c384c..868167a 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "hatchling.build" [project] name = "prefab" -version = "1.1.3" +version = "1.1.4" description = "Artificial nanofabrication of integrated photonic circuits using deep learning" authors = [{ name = "Dusan Gostimirovic", email = "dusan@prefabphotonics.com" }] keywords = ["photonics", "nanofabrication", "machine-learning"]