##// END OF EJS Templates
more updates to documentation aud automation
Matthias Bussonnier -
Show More
@@ -24,7 +24,7 b' _version_minor = 4'
24 24 _version_patch = 0
25 25 _version_extra = '.dev'
26 26 # _version_extra = 'b1'
27 # _version_extra = '' # Uncomment this for full releases
27 _version_extra = '' # Uncomment this for full releases
28 28
29 29 # Construct full version string from these.
30 30 _ver = [_version_major, _version_minor, _version_patch]
@@ -2,6 +2,50 b''
2 2 7.x Series
3 3 ============
4 4
5 .. _whatsnew740:
6
7 IPython 7.4.0
8 =============
9
10 Unicode name completions
11 ------------------------
12
13 Previously, we provided completion for a unicode name with its relative symbol.
14 With this, now IPython provides complete suggestions to unicode name symbols.
15
16 As on the PR, if user types ``\LAT<tab>``, IPython provides a list of
17 possible completions. In this case, it would be something like::
18
19 'LATIN CAPITAL LETTER A',
20 'LATIN CAPITAL LETTER B',
21 'LATIN CAPITAL LETTER C',
22 'LATIN CAPITAL LETTER D',
23 ....
24
25 This help to type unicode character that do not have short latex aliases, and
26 have long unicode names. for example ``Ͱ``, ``\GREEK CAPITAL LETTER HETA``.
27
28 This feature was contributed by Luciana Marques :ghpull:`11583`.
29
30 Make audio normalization optional
31 ---------------------------------
32
33 Added 'normalize' argument to `IPython.display.Audio`. This argument applies
34 when audio data is given as an array of samples. The default of `normalize=True`
35 preserves prior behavior of normalizing the audio to the maximum possible range.
36 Setting to `False` disables normalization.
37
38
39 Miscelanious
40 ------------
41
42 - Fix improper acceptation of ``return`` outside of functions. :ghpull:`11641`.
43 - Fixed PyQt 5.11 backwards incompatibility causing sip import failure.
44 :ghpull:`11613`.
45 - Fix Bug where ``type?`` woudl crash IPython. :ghpull:`1608`.
46 - Allow to apply ``@needs_local_scope`` to cell magics for convenience.
47 :ghpull:`11542`.
48
5 49 .. _whatsnew730:
6 50
7 51 IPython 7.3.0
@@ -1,6 +1,8 b''
1 1 # Simple tool to help for release
2 2 # when releasing with bash, simplei source it to get asked questions.
3 3
4 set -euo pipefail
5
4 6 echo -n PREV_RELEASE:
5 7 read PREV_RELEASE
6 8 echo -n MILESTONE:
@@ -10,12 +12,20 b' read VERSION'
10 12 echo -n branch:
11 13 read branch
12 14
15 echo
13 16 echo "updating what's new with informations from docs/source/whatsnew/pr"
14 17 python tools/update_whatsnew.py
15 18
19 echo
20 echo "please move the contents of developents.rst ot version-X.rst"
21 echo "Press enter to continue"
22 read
23
24 echo
16 25 echo "here are all the authors that contributed to this release:"
17 26 git log --format="%aN <%aE>" $PREV_RELEASE... | sort -u -f
18 27
28 echo
19 29 echo "If you see any duplicates cancel (Ctrl-C), then edit .mailmap" Press enter to continue
20 30 read
21 31
@@ -33,3 +43,17 b' echo "please update version number in IPython/core/release.py"'
33 43
34 44 echo "Press enter to continue"
35 45 read
46
47 echo
48 echo "Attempting to build the docs.."
49 make html -C docs
50
51 echo
52 echo "Check the docs, press enter to continue"
53 read
54
55 echo
56 echo "Attempting to build package..."
57
58 tools/build_release
59
General Comments 0
You need to be logged in to leave comments. Login now