Skip to content

Commit a4a48b3

Browse files
authored
update CHANGES.rst and __init__.py for v3.2.0 (#229)
update CHANGES and set 3.2.0 as version number in `__init__.py`
1 parent 21352bb commit a4a48b3

File tree

2 files changed

+37
-10
lines changed

2 files changed

+37
-10
lines changed

CHANGES.rst

Lines changed: 30 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,35 @@
1-
Version history
2-
===============
1+
Change Log
2+
===================
3+
4+
3.2.0 2024-June-02
5+
-----------------------
6+
7+
Version 3.2.0 is the first release of Uncertainties in nearly two years and the
8+
first minor release in over five years. It marks the beginning of an effort to
9+
refresh and update the project with a new and expanded team of maintainers.
10+
11+
* Main Changes
12+
13+
- Moved code development to lmfit organization, with 4 maintainers.
14+
- Update documentation.
15+
- Drop future dependency. Uncertainties now has no external dependencies when
16+
not using Numpy integration (Drop official support for Python versions before 3.8 #200).
17+
- Drop support for Python versions before 3.8, including Python 2 (Drop official support for Python versions before 3.8 #200)
18+
- remove 1to2 and deprecations (remove 1to2 and depreciations #214)
19+
20+
* Developer related changes
21+
22+
- Moved from setup.py to pyproject.toml (Transition from setup.py to pyproject.toml #199)
23+
- Move tests to tests folder (Move tests to tests folder #216)
24+
- Update unumpy test to be compatible with numpy 2
25+
- Mark docstrings with backslashes as raw strings in tests (Mark docstrings with backslashes as raw strings #226)
26+
27+
28+
29+
Older Version history
30+
------------------------
331

432
Main changes:
5-
- 3.2.0: Python 2 code removed. Python 3.8+ supported officially. Earlier versions may also work. Transitioned to pyproject.toml. Updated documentation.
633
- 3.1.6: The pretty-print and LaTeX format can now be customized.
734
- 3.1.5: Added a "p" formatting option, that makes sure that there are always
835
parentheses around the … ± … part of printed numbers.

uncertainties/__init__.py

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -212,21 +212,21 @@
212212
- This package contains tests. They can be run either manually or
213213
automatically with the nose unit testing framework (nosetests).
214214
215-
(c) 2009-2016 by Eric O. LEBIGOT (EOL) <[email protected]>.
216-
Please send feature requests, bug reports, or feedback to this address.
215+
(c) 2009-2024 by Eric O. LEBIGOT (EOL) <[email protected]>.
217216
218-
Please support future development by donating $10 or more through PayPal!
217+
Please use the Github project at https://github.com/lmfit/uncertainties
218+
for bug reports, feature requests, or feedback.
219219
220-
This software is released under a dual license. (1) The BSD license.
221-
(2) Any other license, as long as it is obtained from the original
222-
author.'''
220+
221+
This software is released under the BSD license.
222+
'''
223223

224224
from builtins import map
225225
from .core import *
226226
from .core import __all__ # For a correct help(uncertainties)
227227

228228
# Numerical version:
229-
__version_info__ = (3, 1, 7)
229+
__version_info__ = (3, 2, 0)
230230
__version__ = '.'.join(map(str, __version_info__))
231231

232232
__author__ = 'Eric O. LEBIGOT (EOL) <[email protected]>'

0 commit comments

Comments
 (0)