From 4eefe4d0f6cafdecf3895b4ce4316d9ebf006e7c Mon Sep 17 00:00:00 2001 From: Manuel Da Pena <65864237+mdapena@users.noreply.github.com> Date: Sat, 2 Mar 2024 19:34:50 -0400 Subject: [PATCH] Release version 0.1.1 --- docs/release-notes.md | 17 +++++++++++++++++ src/pyorlib/__init__.py | 2 +- 2 files changed, 18 insertions(+), 1 deletion(-) diff --git a/docs/release-notes.md b/docs/release-notes.md index f2ae557..ca6a900 100644 --- a/docs/release-notes.md +++ b/docs/release-notes.md @@ -12,6 +12,23 @@ hide: [//]: # (--------------------------------------------------------------------------------------------------------------) +## [v0.1.1](https://github.com/dapensoft/pyorlib/releases/tag/0.1.1) March 2, 2024 { id="0.1.1" } + +
+ +##### Changed + +- The `print_info` and `print_solution` methods in the `Model` class have been enhanced to improve visibility and + provide deeper insights. +- The `get_pretty_string` method in the `Term` class has been refactored as an `@abstractmethod` for subclass + customization and delegation based on specific term needs. +- Badges on the main page of the documentation and the readme file have been updated to improve visibility and align + with the package's color palette. +- The `git-committers` plugin in the `mkdocs.yml` file has been updated to exclude the `index.md`, `examples/index.md`, + and `api/index.md` files for consistency in the current configuration with the `git-revision-date-localized` plugin. + +[//]: # (--------------------------------------------------------------------------------------------------------------) + ## [v0.1.0](https://github.com/dapensoft/pyorlib/releases/tag/0.1.0) March 2, 2024 { id="0.1.0" }
diff --git a/src/pyorlib/__init__.py b/src/pyorlib/__init__.py index ce58a19..7a24112 100644 --- a/src/pyorlib/__init__.py +++ b/src/pyorlib/__init__.py @@ -3,7 +3,7 @@ mathematical models in a standardized manner across different optimization packages. """ -__version__ = "0.1.0" +__version__ = "0.1.1" from .engines import Engine from .model import Model