Skip to content

Commit c66a1b4

Browse files
committed
Release v.0.10.10: Support user-provided jacobians in nonlinear constraints.
1 parent 14f2e49 commit c66a1b4

2 files changed

Lines changed: 11 additions & 7 deletions

File tree

CONTRIBUTING.md

Lines changed: 10 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -26,12 +26,16 @@ pre-commit install
2626
We have a github action set up to publish on PyPI.
2727
The action is triggered on tagged commits to the main branch, where the tag starts with a "v".
2828

29-
Example:
30-
```
31-
git commit -m "Release v0.10.1: stuff"
32-
git tag -a "v0.10.1" -m "Release v0.10.1"
33-
git push --follow-tags
34-
```
29+
Example: For publishing 0.10.1
30+
1. Bump the package version number `opti.__version__ == 0.10.1` and commit.
31+
```
32+
git commit -m "Release v0.10.1: ..."
33+
```
34+
2. Tag and push the commit.
35+
```
36+
git tag -a "v0.10.1" -m "Release v0.10.1"
37+
git push --follow-tags
38+
```
3539
3640
3741
## Documentation

opti/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
"""Specifications and tools for multi-objective optimization problems."""
22
# flake8: noqa
33

4-
__version__ = "0.10.9"
4+
__version__ = "0.10.10"
55

66
from opti import (
77
constraint,

0 commit comments

Comments
 (0)