Skip to content

Commit 4517089

Browse files
committed
chore: Version number, change log
1 parent f1c8637 commit 4517089

4 files changed

Lines changed: 12 additions & 8 deletions

File tree

CHANGELOG.md

Lines changed: 9 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -4,18 +4,21 @@
44

55
### Changes
66

7-
- Implemented the DRSC algorithm for SumEquals constraints. A side-effect of this implementation is that you can now
8-
ask for multiple points with opt.ask() while using this type of constraint (previously you could only ask for one).
9-
- Dropped support for Python 3.9
7+
-
8+
-
109

1110
### Bugfixes
1211

13-
- Fixed TypeError when combining categorical and numerical dimensions in get_Brownie_Bee_Pareto
12+
-
13+
-
1414

15-
## Version 1.1.2 [unpublished]
15+
## Version 1.1.2 [published]
1616

1717
### Changes
1818

19+
- Implemented the DRSC algorithm for SumEquals constraints. A side-effect of this implementation is that you can now
20+
ask for multiple points with opt.ask() while using this type of constraint (previously you could only ask for one).
21+
- Dropped support for Python 3.9
1922
- Added the get_Brownie_Bee_Pareto() function to support Pareto front plotting in the Brownie Bee user interface.
2023
- Added the get_Pareto_front_compromise() function to facilitate a default highlighted compromise in the Pareto plot.
2124
- Added the get_Brownie_Bee_1d_plot() function to support custom 1D dependency plots in the Brownie Bee user interface.
@@ -27,6 +30,7 @@
2730
- Pareto front calculations are now reproducible.
2831
- Fixes small error in legend generation of plot_objective_1d for the case where the user specifies a
2932
specific set of settings to create the plot at
33+
- Fixed TypeError when combining categorical and numerical dimensions in get_Brownie_Bee_Pareto
3034

3135
## Version 1.1.1 [published]
3236

ProcessOptimizer/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@
4040
from .samplers.doe import get_optimal_DOE
4141
from .XpyriMentor import XpyriMentor
4242

43-
__version__ = "1.1.1"
43+
__version__ = "1.1.2"
4444

4545

4646
__all__ = (

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -178,7 +178,7 @@ If you have not packaged before check out https://packaging.python.org/tutorials
178178
To upload a new version to PyPi do the following in the root folder of the project:
179179
180180
- In terminal run the command "pytest" and make sure there are no errors
181-
- Change version number in setup.py
181+
- Change version number in pyproject.toml
182182
- Change version number in ProcessOptimizer/\_\_init\_\_.py
183183
- Remember to `pip install twine` if running in a new virtual env. (You might also have to `pip install build`)
184184
- Run `python -m build`

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
44

55
[project]
66
name = "ProcessOptimizer"
7-
version = "1.1.1"
7+
version = "1.1.2"
88
description = "Sequential model-based optimization toolbox (forked from scikit-optimize)"
99
license = { text = "BSD" }
1010
authors = [

0 commit comments

Comments
 (0)