Skip to content

Commit 8da253e

Browse files
committed
update changelog and bump version number
1 parent 93ec487 commit 8da253e

4 files changed

Lines changed: 16 additions & 4 deletions

File tree

CHANGES.txt

Lines changed: 13 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,11 +2,23 @@
22
CHANGES
33
=======
44

5+
-----
6+
0.9.0
7+
-----
8+
9+
Numpy-1.4.0 or later is also required, in order to properly handle
10+
units during in-place arithmetic.
11+
12+
Physical constants are now instances of Quantity, rather than
13+
UncertainQuantity. Development on UncertainQuantity is not as
14+
advanced, so hopefully this change will make the constants package
15+
more robust.
16+
517
-----
618
0.8.0
719
-----
820

9-
Quantities now requires Python-2.6 or later. Python-3 is supported.
21+
Quantities now requires Python-2.6 or later. Python-3 is supported.
1022

1123
The fill method, and __setitem__ methods will now accept scalar
1224
values in addition to quantities. If a scalar is passed, an

quantities/tests/test_50_umath.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -179,7 +179,7 @@ def test_rounding():
179179
[-1., -1., -0., 1., 2., 2., 2.] * units.m
180180
)
181181

182-
@skip_if(np.__version__[:5] < '1.4.1')
182+
@skip_if(np.__version__[:5] < '2.0.0')
183183
def test_fix():
184184
assert_array_equal(np.fix(3.14 * units.degF), 3.0 * units.degF)
185185
assert_array_equal(np.fix(3.0 * units.degF), 3.0 * units.degF)

quantities/version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11

2-
__version__ = '0.8.0'
2+
__version__ = '0.9.0'

setup.cfg

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ platforms = Any
3333
requires = python (>=2.6.0)
3434
numpy (>=1.4.0)
3535
url = http://packages.python.org/quantities
36-
version = 0.8.0
36+
version = 0.9.0
3737
zip_safe = False
3838

3939
[aliases]

0 commit comments

Comments
 (0)