From e189a8742ec3718064eb0d3a8e61019ce8f01ed0 Mon Sep 17 00:00:00 2001 From: Vicente Date: Thu, 7 Aug 2025 02:34:50 -0600 Subject: [PATCH] Release v1.1.1 --- CHANGELOG.md | 2 +- README.md | 2 +- bioneuralnet/__init__.py | 2 +- docs/jupyter_execute/Quick_Start.ipynb | 2 +- docs/source/Quick_Start.ipynb | 2 +- docs/source/conf.py | 2 +- setup.cfg | 2 +- 7 files changed, 7 insertions(+), 7 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 8a0b681..c1a1411 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -66,7 +66,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/). - **Updated Tutorials and Documentation**: New end to end jupiter notebook example. - **Updated Test**: All test have been updated and new ones have been added. -## [1.1.0] - 2025-07-12 +## [1.1.1] - 2025-07-12 ### **Added** - **New Embedding Integration Utility** diff --git a/README.md b/README.md index e98fa2d..bf07e9f 100644 --- a/README.md +++ b/README.md @@ -8,7 +8,7 @@ [![Documentation](https://img.shields.io/badge/docs-read%20the%20docs-blue.svg)](https://bioneuralnet.readthedocs.io/en/latest/) -## Welcome to BioNeuralNet 1.1.0 +## Welcome to BioNeuralNet 1.1.1 ![BioNeuralNet Logo](assets/LOGO_WB.png) diff --git a/bioneuralnet/__init__.py b/bioneuralnet/__init__.py index 3a8d59c..1869b22 100644 --- a/bioneuralnet/__init__.py +++ b/bioneuralnet/__init__.py @@ -29,7 +29,7 @@ - `datasets`: Contains example (synthetic) datasets for testing and demonstration purposes. """ -__version__ = "1.1.0" +__version__ = "1.1.1" from .network_embedding import GNNEmbedding from .downstream_task import SubjectRepresentation diff --git a/docs/jupyter_execute/Quick_Start.ipynb b/docs/jupyter_execute/Quick_Start.ipynb index b7f01e0..f1e5fac 100644 --- a/docs/jupyter_execute/Quick_Start.ipynb +++ b/docs/jupyter_execute/Quick_Start.ipynb @@ -913,7 +913,7 @@ "name": "stdout", "output_type": "stream", "text": [ - "BioNeuralNet version: 1.1.0\n" + "BioNeuralNet version: 1.1.1\n" ] } ], diff --git a/docs/source/Quick_Start.ipynb b/docs/source/Quick_Start.ipynb index 7ddb69b..8a4089b 100644 --- a/docs/source/Quick_Start.ipynb +++ b/docs/source/Quick_Start.ipynb @@ -896,7 +896,7 @@ "name": "stdout", "output_type": "stream", "text": [ - "BioNeuralNet version: 1.1.0\n" + "BioNeuralNet version: 1.1.1\n" ] } ], diff --git a/docs/source/conf.py b/docs/source/conf.py index 2ee4a42..3f3ca7b 100644 --- a/docs/source/conf.py +++ b/docs/source/conf.py @@ -7,7 +7,7 @@ try: release = metadata.version("bioneuralnet") except metadata.PackageNotFoundError: - release = "1.1.0" + release = "1.1.1" project = "BioNeuralNet" version = release diff --git a/setup.cfg b/setup.cfg index 572f2b4..1c12434 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,6 +1,6 @@ [metadata] name = bioneuralnet -version = 1.1.0 +version = 1.1.1 author = Vicente Ramos author_email = vicente.ramos@ucdenver.edu description = A comprehensive framework for integrating multi-omics data with neural network embeddings.