Skip to content

Commit e74fcd8

Browse files
changelog and setup.cfg
1 parent 1bbcaf6 commit e74fcd8

File tree

2 files changed

+12
-7
lines changed

2 files changed

+12
-7
lines changed

CHANGELOG

Lines changed: 10 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
1.3.dev
1+
1.3
22
----------------------------------------
33

44
- fix issue2 - adapt tests on Jython
@@ -7,6 +7,9 @@
77
all their attributes instead of raising ImportError. This addresses
88
python3.4 where any call to getframeinfo() can choke on sys.modules
99
contents if pytest is not installed (because py.test.* imports it).
10+
- introduce apipkg.distribution_version(name) as helper to
11+
obtain the current version number of a package from install metadata
12+
its used by default with the package name
1013

1114
1.2
1215
----------------------------------------
@@ -26,7 +29,7 @@
2629
----------------------------------------
2730

2831
- make apipkg memorize the absolute path where a package starts
29-
importing so that subsequent chdir + imports won't break.
32+
importing so that subsequent chdir + imports won't break.
3033

3134
- allow to alias modules
3235

@@ -36,20 +39,20 @@
3639
1.0.0b6
3740
----------------------------------------
3841

39-
- fix recursive import issue resulting in a superflous KeyError
42+
- fix recursive import issue resulting in a superflous KeyError
4043
- default to __version__ '0' and not set __loader__ or __path__ at all if it
4144
doesn't exist on the underlying init module
4245

4346
1.0.0b5
4447
----------------------------------------
4548

4649
- fixed MANIFEST.in
47-
- also transfer __loader__ attribute (thanks Ralf Schmitt)
48-
- compat fix for BPython
50+
- also transfer __loader__ attribute (thanks Ralf Schmitt)
51+
- compat fix for BPython
4952

5053
1.0.0b3 (compared to 1.0.0b2)
5154
------------------------------------
5255

53-
- added special __onfirstaccess__ attribute whose value will
54-
be called on the first attribute access of an apimodule.
56+
- added special __onfirstaccess__ attribute whose value will
57+
be called on the first attribute access of an apimodule.
5558

setup.cfg

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
[wheel]
2+
universal=true

0 commit comments

Comments
 (0)