Skip to content

Commit 9b894c5

Browse files
committed
Bump to version 1.5.0.
1 parent 892dfcb commit 9b894c5

File tree

2 files changed

+20
-19
lines changed

2 files changed

+20
-19
lines changed

CHANGELOG.rst

Lines changed: 19 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
Version 1.5.0.dev0
2-
==================
1+
Version 1.5.0 (2025-11-01)
2+
==========================
33

44
- Support added for Python 3.14.
55
- The compiled binaries are now cached if ``tmp_dir`` is set to a common
@@ -30,6 +30,7 @@ Version 1.5.0.dev0
3030
``Problem.time_vector()``.
3131
- Method added to ``Problem`` to check if a solution respects the bounds and
3232
flag to check the initial guess before solving: ``check_bounds_conflict()``.
33+
- Added ``Problem.plot_jacobian_sparsity()`` to visualize the NLP Jacobian.
3334
- openmp parallelization now works on Mac.
3435
- Addressed a performance issue for large number of nodes (1M+) by eliminating
3536
a SymPy float in the computation.
@@ -52,8 +53,8 @@ Version 1.5.0.dev0
5253
- [Intermediate] Car staying within a race course.
5354
- [Intermediate] Approximation of a multiphase problem.
5455

55-
Version 1.4.0
56-
=============
56+
Version 1.4.0 (2025-02-11)
57+
==========================
5758

5859
- Dropped support for Python 3.8.
5960
- Added support for Python 3.13.
@@ -100,8 +101,8 @@ Version 1.4.0
100101
- Sit-to-stand
101102
- Standing balance control identification
102103

103-
Version 1.3.0
104-
=============
104+
Version 1.3.0 (2024-08-05)
105+
==========================
105106

106107
- Added support for Python 3.12.
107108
- Added a function that generates a numerical objective function and its
@@ -138,8 +139,8 @@ Version 1.3.0
138139
names.
139140
- Switched to pytest for unit testing.
140141

141-
Version 1.2.0
142-
=============
142+
Version 1.2.0 (2023-11-28)
143+
==========================
143144

144145
- Dropped support for Python 2.7, 3.6, & 3.7.
145146
- Added support for Python 3.9, 3.10, & 3.11.
@@ -152,14 +153,14 @@ Version 1.2.0
152153
- logging.info() used for providing information to the user.
153154
- Moved to Github Actions continous integration.
154155

155-
Version 1.1.0
156-
=============
156+
Version 1.1.0 (2021-01-09)
157+
==========================
157158

158159
- Added support for Windows.
159160
- Drop support for Python 3.5, add support for 3.7 and 3.8.
160161

161-
Version 1.0.0
162-
=============
162+
Version 1.0.0 (2018-01-30)
163+
==========================
163164

164165
- Added JOSS paper.
165166
- Added theory section to the documentation.
@@ -168,21 +169,21 @@ Version 1.0.0
168169
- Adjusted the pendulum swing up torque bounds.
169170
- Updated examples to work with newer dependency versions.
170171

171-
Version 0.2.0
172-
=============
172+
Version 0.2.0 (2017-06-04)
173+
==========================
173174

174175
- Added Sphinx documentation and Read The Docs integration.
175176
- Added plotting to the Problem class and matplotlib as an optional dependency.
176177
- Added conda forge installation instructions and Anaconda badge to the README.
177178
- park2004 example now works with both Python 2.7 and 3.5+.
178179
- Bumped the min dependencies for SymPy and PyDy to 1.0.0 and 0.3.0.
179180

180-
Version 0.1.1
181-
=============
181+
Version 0.1.1 (2017-01-29)
182+
==========================
182183

183184
- Added a MANIFEST.in file.
184185

185-
Version 0.1.0
186-
=============
186+
Version 0.1.0 (2017-01-29)
187+
==========================
187188

188189
- Initial release.

opty/version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
#!/usr/bin/env python
22

3-
__version__ = '1.5.0.dev0'
3+
__version__ = '1.5.0'

0 commit comments

Comments
 (0)