Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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**
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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)

Expand Down
2 changes: 1 addition & 1 deletion bioneuralnet/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion docs/jupyter_execute/Quick_Start.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -913,7 +913,7 @@
"name": "stdout",
"output_type": "stream",
"text": [
"BioNeuralNet version: 1.1.0\n"
"BioNeuralNet version: 1.1.1\n"
]
}
],
Expand Down
2 changes: 1 addition & 1 deletion docs/source/Quick_Start.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -896,7 +896,7 @@
"name": "stdout",
"output_type": "stream",
"text": [
"BioNeuralNet version: 1.1.0\n"
"BioNeuralNet version: 1.1.1\n"
]
}
],
Expand Down
2 changes: 1 addition & 1 deletion docs/source/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
try:
release = metadata.version("bioneuralnet")
except metadata.PackageNotFoundError:
release = "1.1.0"
release = "1.1.1"

project = "BioNeuralNet"
version = release
Expand Down
2 changes: 1 addition & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
@@ -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.
Expand Down
Loading