Show More
@@ -1,119 +1,119 b'' | |||||
1 | # -*- coding: utf-8 -*- |
|
1 | # -*- coding: utf-8 -*- | |
2 | """Release data for the IPython project.""" |
|
2 | """Release data for the IPython project.""" | |
3 |
|
3 | |||
4 | #----------------------------------------------------------------------------- |
|
4 | #----------------------------------------------------------------------------- | |
5 | # Copyright (c) 2008, IPython Development Team. |
|
5 | # Copyright (c) 2008, IPython Development Team. | |
6 | # Copyright (c) 2001, Fernando Perez <fernando.perez@colorado.edu> |
|
6 | # Copyright (c) 2001, Fernando Perez <fernando.perez@colorado.edu> | |
7 | # Copyright (c) 2001, Janko Hauser <jhauser@zscout.de> |
|
7 | # Copyright (c) 2001, Janko Hauser <jhauser@zscout.de> | |
8 | # Copyright (c) 2001, Nathaniel Gray <n8gray@caltech.edu> |
|
8 | # Copyright (c) 2001, Nathaniel Gray <n8gray@caltech.edu> | |
9 | # |
|
9 | # | |
10 | # Distributed under the terms of the Modified BSD License. |
|
10 | # Distributed under the terms of the Modified BSD License. | |
11 | # |
|
11 | # | |
12 | # The full license is in the file COPYING.txt, distributed with this software. |
|
12 | # The full license is in the file COPYING.txt, distributed with this software. | |
13 | #----------------------------------------------------------------------------- |
|
13 | #----------------------------------------------------------------------------- | |
14 |
|
14 | |||
15 | # Name of the package for release purposes. This is the name which labels |
|
15 | # Name of the package for release purposes. This is the name which labels | |
16 | # the tarballs and RPMs made by distutils, so it's best to lowercase it. |
|
16 | # the tarballs and RPMs made by distutils, so it's best to lowercase it. | |
17 | name = 'ipython' |
|
17 | name = 'ipython' | |
18 |
|
18 | |||
19 | # IPython version information. An empty _version_extra corresponds to a full |
|
19 | # IPython version information. An empty _version_extra corresponds to a full | |
20 | # release. 'dev' as a _version_extra string means this is a development |
|
20 | # release. 'dev' as a _version_extra string means this is a development | |
21 | # version |
|
21 | # version | |
22 | _version_major = 7 |
|
22 | _version_major = 7 | |
23 |
_version_minor = 1 |
|
23 | _version_minor = 14 | |
24 | _version_patch = 0 |
|
24 | _version_patch = 0 | |
25 | _version_extra = '.dev' |
|
25 | _version_extra = '.dev' | |
26 | # _version_extra = 'b1' |
|
26 | # _version_extra = 'b1' | |
27 |
|
|
27 | _version_extra = '' # Uncomment this for full releases | |
28 |
|
28 | |||
29 | # Construct full version string from these. |
|
29 | # Construct full version string from these. | |
30 | _ver = [_version_major, _version_minor, _version_patch] |
|
30 | _ver = [_version_major, _version_minor, _version_patch] | |
31 |
|
31 | |||
32 | __version__ = '.'.join(map(str, _ver)) |
|
32 | __version__ = '.'.join(map(str, _ver)) | |
33 | if _version_extra: |
|
33 | if _version_extra: | |
34 | __version__ = __version__ + _version_extra |
|
34 | __version__ = __version__ + _version_extra | |
35 |
|
35 | |||
36 | version = __version__ # backwards compatibility name |
|
36 | version = __version__ # backwards compatibility name | |
37 | version_info = (_version_major, _version_minor, _version_patch, _version_extra) |
|
37 | version_info = (_version_major, _version_minor, _version_patch, _version_extra) | |
38 |
|
38 | |||
39 | # Change this when incrementing the kernel protocol version |
|
39 | # Change this when incrementing the kernel protocol version | |
40 | kernel_protocol_version_info = (5, 0) |
|
40 | kernel_protocol_version_info = (5, 0) | |
41 | kernel_protocol_version = "%i.%i" % kernel_protocol_version_info |
|
41 | kernel_protocol_version = "%i.%i" % kernel_protocol_version_info | |
42 |
|
42 | |||
43 | description = "IPython: Productive Interactive Computing" |
|
43 | description = "IPython: Productive Interactive Computing" | |
44 |
|
44 | |||
45 | long_description = \ |
|
45 | long_description = \ | |
46 | """ |
|
46 | """ | |
47 | IPython provides a rich toolkit to help you make the most out of using Python |
|
47 | IPython provides a rich toolkit to help you make the most out of using Python | |
48 | interactively. Its main components are: |
|
48 | interactively. Its main components are: | |
49 |
|
49 | |||
50 | * A powerful interactive Python shell |
|
50 | * A powerful interactive Python shell | |
51 | * A `Jupyter <https://jupyter.org/>`_ kernel to work with Python code in Jupyter |
|
51 | * A `Jupyter <https://jupyter.org/>`_ kernel to work with Python code in Jupyter | |
52 | notebooks and other interactive frontends. |
|
52 | notebooks and other interactive frontends. | |
53 |
|
53 | |||
54 | The enhanced interactive Python shells have the following main features: |
|
54 | The enhanced interactive Python shells have the following main features: | |
55 |
|
55 | |||
56 | * Comprehensive object introspection. |
|
56 | * Comprehensive object introspection. | |
57 |
|
57 | |||
58 | * Input history, persistent across sessions. |
|
58 | * Input history, persistent across sessions. | |
59 |
|
59 | |||
60 | * Caching of output results during a session with automatically generated |
|
60 | * Caching of output results during a session with automatically generated | |
61 | references. |
|
61 | references. | |
62 |
|
62 | |||
63 | * Extensible tab completion, with support by default for completion of python |
|
63 | * Extensible tab completion, with support by default for completion of python | |
64 | variables and keywords, filenames and function keywords. |
|
64 | variables and keywords, filenames and function keywords. | |
65 |
|
65 | |||
66 | * Extensible system of 'magic' commands for controlling the environment and |
|
66 | * Extensible system of 'magic' commands for controlling the environment and | |
67 | performing many tasks related either to IPython or the operating system. |
|
67 | performing many tasks related either to IPython or the operating system. | |
68 |
|
68 | |||
69 | * A rich configuration system with easy switching between different setups |
|
69 | * A rich configuration system with easy switching between different setups | |
70 | (simpler than changing $PYTHONSTARTUP environment variables every time). |
|
70 | (simpler than changing $PYTHONSTARTUP environment variables every time). | |
71 |
|
71 | |||
72 | * Session logging and reloading. |
|
72 | * Session logging and reloading. | |
73 |
|
73 | |||
74 | * Extensible syntax processing for special purpose situations. |
|
74 | * Extensible syntax processing for special purpose situations. | |
75 |
|
75 | |||
76 | * Access to the system shell with user-extensible alias system. |
|
76 | * Access to the system shell with user-extensible alias system. | |
77 |
|
77 | |||
78 | * Easily embeddable in other Python programs and GUIs. |
|
78 | * Easily embeddable in other Python programs and GUIs. | |
79 |
|
79 | |||
80 | * Integrated access to the pdb debugger and the Python profiler. |
|
80 | * Integrated access to the pdb debugger and the Python profiler. | |
81 |
|
81 | |||
82 | The latest development version is always available from IPython's `GitHub |
|
82 | The latest development version is always available from IPython's `GitHub | |
83 | site <http://github.com/ipython>`_. |
|
83 | site <http://github.com/ipython>`_. | |
84 | """ |
|
84 | """ | |
85 |
|
85 | |||
86 | license = 'BSD' |
|
86 | license = 'BSD' | |
87 |
|
87 | |||
88 | authors = {'Fernando' : ('Fernando Perez','fperez.net@gmail.com'), |
|
88 | authors = {'Fernando' : ('Fernando Perez','fperez.net@gmail.com'), | |
89 | 'Janko' : ('Janko Hauser','jhauser@zscout.de'), |
|
89 | 'Janko' : ('Janko Hauser','jhauser@zscout.de'), | |
90 | 'Nathan' : ('Nathaniel Gray','n8gray@caltech.edu'), |
|
90 | 'Nathan' : ('Nathaniel Gray','n8gray@caltech.edu'), | |
91 | 'Ville' : ('Ville Vainio','vivainio@gmail.com'), |
|
91 | 'Ville' : ('Ville Vainio','vivainio@gmail.com'), | |
92 | 'Brian' : ('Brian E Granger', 'ellisonbg@gmail.com'), |
|
92 | 'Brian' : ('Brian E Granger', 'ellisonbg@gmail.com'), | |
93 | 'Min' : ('Min Ragan-Kelley', 'benjaminrk@gmail.com'), |
|
93 | 'Min' : ('Min Ragan-Kelley', 'benjaminrk@gmail.com'), | |
94 | 'Thomas' : ('Thomas A. Kluyver', 'takowl@gmail.com'), |
|
94 | 'Thomas' : ('Thomas A. Kluyver', 'takowl@gmail.com'), | |
95 | 'Jorgen' : ('Jorgen Stenarson', 'jorgen.stenarson@bostream.nu'), |
|
95 | 'Jorgen' : ('Jorgen Stenarson', 'jorgen.stenarson@bostream.nu'), | |
96 | 'Matthias' : ('Matthias Bussonnier', 'bussonniermatthias@gmail.com'), |
|
96 | 'Matthias' : ('Matthias Bussonnier', 'bussonniermatthias@gmail.com'), | |
97 | } |
|
97 | } | |
98 |
|
98 | |||
99 | author = 'The IPython Development Team' |
|
99 | author = 'The IPython Development Team' | |
100 |
|
100 | |||
101 | author_email = 'ipython-dev@python.org' |
|
101 | author_email = 'ipython-dev@python.org' | |
102 |
|
102 | |||
103 | url = 'https://ipython.org' |
|
103 | url = 'https://ipython.org' | |
104 |
|
104 | |||
105 |
|
105 | |||
106 | platforms = ['Linux','Mac OSX','Windows'] |
|
106 | platforms = ['Linux','Mac OSX','Windows'] | |
107 |
|
107 | |||
108 | keywords = ['Interactive','Interpreter','Shell', 'Embedding'] |
|
108 | keywords = ['Interactive','Interpreter','Shell', 'Embedding'] | |
109 |
|
109 | |||
110 | classifiers = [ |
|
110 | classifiers = [ | |
111 | 'Framework :: IPython', |
|
111 | 'Framework :: IPython', | |
112 | 'Intended Audience :: Developers', |
|
112 | 'Intended Audience :: Developers', | |
113 | 'Intended Audience :: Science/Research', |
|
113 | 'Intended Audience :: Science/Research', | |
114 | 'License :: OSI Approved :: BSD License', |
|
114 | 'License :: OSI Approved :: BSD License', | |
115 | 'Programming Language :: Python', |
|
115 | 'Programming Language :: Python', | |
116 | 'Programming Language :: Python :: 3', |
|
116 | 'Programming Language :: Python :: 3', | |
117 | 'Programming Language :: Python :: 3 :: Only', |
|
117 | 'Programming Language :: Python :: 3 :: Only', | |
118 | 'Topic :: System :: Shells' |
|
118 | 'Topic :: System :: Shells' | |
119 | ] |
|
119 | ] |
@@ -1,461 +1,484 b'' | |||||
1 | Issues closed in the 7.x development cycle |
|
1 | Issues closed in the 7.x development cycle | |
2 | ========================================== |
|
2 | ========================================== | |
3 |
|
3 | |||
4 |
Issues closed in |
|
4 | Issues closed in 7.14 | |
5 | --------------------- |
|
5 | --------------------- | |
6 |
|
6 | |||
|
7 | GitHub stats for 2020/02/29 - 2020/05/01 (tag: 7.13.0) | |||
|
8 | ||||
|
9 | These lists are automatically generated, and may be incomplete or contain duplicates. | |||
|
10 | ||||
|
11 | We closed 0 issues and merged 30 pull requests. | |||
|
12 | The full list can be seen `on GitHub <https://github.com/ipython/ipython/issues?q=milestone%3A7.14>`__ | |||
|
13 | ||||
|
14 | The following 10 authors contributed 47 commits. | |||
|
15 | ||||
|
16 | * Eric Wieser | |||
|
17 | * foobarbyte | |||
|
18 | * Ian Castleden | |||
|
19 | * Itamar Turner-Trauring | |||
|
20 | * Lumir Balhar | |||
|
21 | * Markus Wageringel | |||
|
22 | * Matthias Bussonnier | |||
|
23 | * Matthieu Ancellin | |||
|
24 | * Quentin Peter | |||
|
25 | * Theo Ouzhinski | |||
|
26 | ||||
|
27 | Issues closed in 7.13 | |||
|
28 | --------------------- | |||
7 |
|
29 | |||
8 | GitHub stats for 2020/02/01 - 2020/02/28 (tag: 7.12.0) |
|
30 | GitHub stats for 2020/02/01 - 2020/02/28 (tag: 7.12.0) | |
9 |
|
31 | |||
10 | These lists are automatically generated, and may be incomplete or contain duplicates. |
|
32 | These lists are automatically generated, and may be incomplete or contain duplicates. | |
11 |
|
33 | |||
12 | We closed 1 issues and merged 24 pull requests. |
|
34 | We closed 1 issues and merged 24 pull requests. | |
13 | The full list can be seen `on GitHub <https://github.com/ipython/ipython/issues?q=milestone%3A7.13>`__ |
|
35 | The full list can be seen `on GitHub <https://github.com/ipython/ipython/issues?q=milestone%3A7.13>`__ | |
14 |
|
36 | |||
15 | The following 12 authors contributed 108 commits. |
|
37 | The following 12 authors contributed 108 commits. | |
16 |
|
38 | |||
17 | * Alex Hall |
|
39 | * Alex Hall | |
18 | * Augusto |
|
40 | * Augusto | |
19 | * Coon, Ethan T |
|
41 | * Coon, Ethan T | |
20 | * Daniel Hahler |
|
42 | * Daniel Hahler | |
21 | * Inception95 |
|
43 | * Inception95 | |
22 | * Itamar Turner-Trauring |
|
44 | * Itamar Turner-Trauring | |
23 | * Jonas Haag |
|
45 | * Jonas Haag | |
24 | * Jonathan Slenders |
|
46 | * Jonathan Slenders | |
25 | * linar-jether |
|
47 | * linar-jether | |
26 | * Matthias Bussonnier |
|
48 | * Matthias Bussonnier | |
27 | * Nathan Goldbaum |
|
49 | * Nathan Goldbaum | |
28 | * Terry Davis |
|
50 | * Terry Davis | |
29 |
|
51 | |||
|
52 | ||||
30 | Issues closed in 7.12 |
|
53 | Issues closed in 7.12 | |
31 | --------------------- |
|
54 | --------------------- | |
32 |
|
55 | |||
33 | GitHub stats for 2020/01/01 - 2020/01/31 (tag: 7.11.1) |
|
56 | GitHub stats for 2020/01/01 - 2020/01/31 (tag: 7.11.1) | |
34 |
|
57 | |||
35 | These lists are automatically generated, and may be incomplete or contain duplicates. |
|
58 | These lists are automatically generated, and may be incomplete or contain duplicates. | |
36 |
|
59 | |||
37 | We closed 2 issues and merged 14 pull requests. |
|
60 | We closed 2 issues and merged 14 pull requests. | |
38 | The full list can be seen `on GitHub <https://github.com/ipython/ipython/issues?q=milestone%3A7.12>`__ |
|
61 | The full list can be seen `on GitHub <https://github.com/ipython/ipython/issues?q=milestone%3A7.12>`__ | |
39 |
|
62 | |||
40 | The following 11 authors contributed 48 commits. |
|
63 | The following 11 authors contributed 48 commits. | |
41 |
|
64 | |||
42 | * Augusto |
|
65 | * Augusto | |
43 | * Eric Wieser |
|
66 | * Eric Wieser | |
44 | * Jeff Potter |
|
67 | * Jeff Potter | |
45 | * Mark E. Haase |
|
68 | * Mark E. Haase | |
46 | * Matthias Bussonnier |
|
69 | * Matthias Bussonnier | |
47 | * ossdev07 |
|
70 | * ossdev07 | |
48 | * ras44 |
|
71 | * ras44 | |
49 | * takuya fujiwara |
|
72 | * takuya fujiwara | |
50 | * Terry Davis |
|
73 | * Terry Davis | |
51 | * Thomas A Caswell |
|
74 | * Thomas A Caswell | |
52 | * yangyang |
|
75 | * yangyang | |
53 |
|
76 | |||
54 | Issues closed in 7.11 |
|
77 | Issues closed in 7.11 | |
55 | --------------------- |
|
78 | --------------------- | |
56 |
|
79 | |||
57 | GitHub stats for 2019/12/01 - 2019/12/27 (tag: 7.10.1) |
|
80 | GitHub stats for 2019/12/01 - 2019/12/27 (tag: 7.10.1) | |
58 |
|
81 | |||
59 | These lists are automatically generated, and may be incomplete or contain duplicates. |
|
82 | These lists are automatically generated, and may be incomplete or contain duplicates. | |
60 |
|
83 | |||
61 | We closed 4 issues and merged 36 pull requests. |
|
84 | We closed 4 issues and merged 36 pull requests. | |
62 | The full list can be seen `on GitHub <https://github.com/ipython/ipython/issues?q=milestone%3A7.11>`__ |
|
85 | The full list can be seen `on GitHub <https://github.com/ipython/ipython/issues?q=milestone%3A7.11>`__ | |
63 |
|
86 | |||
64 | The following 16 authors contributed 114 commits. |
|
87 | The following 16 authors contributed 114 commits. | |
65 |
|
88 | |||
66 | * Augusto |
|
89 | * Augusto | |
67 | * Benjamin Ragan-Kelley |
|
90 | * Benjamin Ragan-Kelley | |
68 | * Chemss Eddine Ben Hassine |
|
91 | * Chemss Eddine Ben Hassine | |
69 | * Danny Hermes |
|
92 | * Danny Hermes | |
70 | * Dominik Miedziński |
|
93 | * Dominik Miedziński | |
71 | * Jonathan Feinberg |
|
94 | * Jonathan Feinberg | |
72 | * Jonathan Slenders |
|
95 | * Jonathan Slenders | |
73 | * Joseph Kahn |
|
96 | * Joseph Kahn | |
74 | * kousik |
|
97 | * kousik | |
75 | * Kousik Mitra |
|
98 | * Kousik Mitra | |
76 | * Marc Hernandez Cabot |
|
99 | * Marc Hernandez Cabot | |
77 | * Matthias Bussonnier |
|
100 | * Matthias Bussonnier | |
78 | * Naveen Honest Raj K |
|
101 | * Naveen Honest Raj K | |
79 | * Pratyay Pandey |
|
102 | * Pratyay Pandey | |
80 | * Quentin Peter |
|
103 | * Quentin Peter | |
81 | * takuya fujiwara |
|
104 | * takuya fujiwara | |
82 |
|
105 | |||
83 |
|
106 | |||
84 | Issues closed in 7.10.2 |
|
107 | Issues closed in 7.10.2 | |
85 | ----------------------- |
|
108 | ----------------------- | |
86 |
|
109 | |||
87 |
|
110 | |||
88 | GitHub stats for 2019/12/01 - 2019/12/14 (tag: 7.10.1) |
|
111 | GitHub stats for 2019/12/01 - 2019/12/14 (tag: 7.10.1) | |
89 |
|
112 | |||
90 | These lists are automatically generated, and may be incomplete or contain duplicates. |
|
113 | These lists are automatically generated, and may be incomplete or contain duplicates. | |
91 |
|
114 | |||
92 | We closed 3 issues and merged 10 pull requests. |
|
115 | We closed 3 issues and merged 10 pull requests. | |
93 | The full list can be seen `on GitHub <https://github.com/ipython/ipython/issues?q=milestone%3A7.10.2>`__ |
|
116 | The full list can be seen `on GitHub <https://github.com/ipython/ipython/issues?q=milestone%3A7.10.2>`__ | |
94 |
|
117 | |||
95 | The following 3 authors contributed 11 commits. |
|
118 | The following 3 authors contributed 11 commits. | |
96 |
|
119 | |||
97 | * Jonathan Slenders |
|
120 | * Jonathan Slenders | |
98 | * Joseph Kahn |
|
121 | * Joseph Kahn | |
99 | * Matthias Bussonnier |
|
122 | * Matthias Bussonnier | |
100 |
|
123 | |||
101 | Issues closed in 7.10.1 |
|
124 | Issues closed in 7.10.1 | |
102 | ----------------------- |
|
125 | ----------------------- | |
103 |
|
126 | |||
104 | GitHub stats for 2019/11/27 - 2019/12/01 (tag: 7.10.0) |
|
127 | GitHub stats for 2019/11/27 - 2019/12/01 (tag: 7.10.0) | |
105 |
|
128 | |||
106 | These lists are automatically generated, and may be incomplete or contain duplicates. |
|
129 | These lists are automatically generated, and may be incomplete or contain duplicates. | |
107 |
|
130 | |||
108 | We closed 5 issues and merged 7 pull requests. |
|
131 | We closed 5 issues and merged 7 pull requests. | |
109 | The full list can be seen `on GitHub <https://github.com/ipython/ipython/issues?q=milestone%3A7.10.1>`__ |
|
132 | The full list can be seen `on GitHub <https://github.com/ipython/ipython/issues?q=milestone%3A7.10.1>`__ | |
110 |
|
133 | |||
111 | The following 2 authors contributed 14 commits. |
|
134 | The following 2 authors contributed 14 commits. | |
112 |
|
135 | |||
113 | * Jonathan Slenders |
|
136 | * Jonathan Slenders | |
114 | * Matthias Bussonnier |
|
137 | * Matthias Bussonnier | |
115 |
|
138 | |||
116 | Issues closed in 7.10 |
|
139 | Issues closed in 7.10 | |
117 | --------------------- |
|
140 | --------------------- | |
118 |
|
141 | |||
119 | GitHub stats for 2019/10/25 - 2019/11/27 (tag: 7.9.0) |
|
142 | GitHub stats for 2019/10/25 - 2019/11/27 (tag: 7.9.0) | |
120 |
|
143 | |||
121 | These lists are automatically generated, and may be incomplete or contain duplicates. |
|
144 | These lists are automatically generated, and may be incomplete or contain duplicates. | |
122 |
|
145 | |||
123 | We closed 4 issues and merged 22 pull requests. |
|
146 | We closed 4 issues and merged 22 pull requests. | |
124 | The full list can be seen `on GitHub <https://github.com/ipython/ipython/issues?q=milestone%3A7.10>`__ |
|
147 | The full list can be seen `on GitHub <https://github.com/ipython/ipython/issues?q=milestone%3A7.10>`__ | |
125 |
|
148 | |||
126 | The following 15 authors contributed 101 commits. |
|
149 | The following 15 authors contributed 101 commits. | |
127 |
|
150 | |||
128 | * anatoly techtonik |
|
151 | * anatoly techtonik | |
129 | * Ben Lewis |
|
152 | * Ben Lewis | |
130 | * Benjamin Ragan-Kelley |
|
153 | * Benjamin Ragan-Kelley | |
131 | * Gerrit Buss |
|
154 | * Gerrit Buss | |
132 | * grey275 |
|
155 | * grey275 | |
133 | * Gökcen Eraslan |
|
156 | * Gökcen Eraslan | |
134 | * Jonathan Slenders |
|
157 | * Jonathan Slenders | |
135 | * Joris Van den Bossche |
|
158 | * Joris Van den Bossche | |
136 | * kousik |
|
159 | * kousik | |
137 | * Matthias Bussonnier |
|
160 | * Matthias Bussonnier | |
138 | * Nicholas Bollweg |
|
161 | * Nicholas Bollweg | |
139 | * Paul McCarthy |
|
162 | * Paul McCarthy | |
140 | * Srinivas Reddy Thatiparthy |
|
163 | * Srinivas Reddy Thatiparthy | |
141 | * Timo Kaufmann |
|
164 | * Timo Kaufmann | |
142 | * Tony Fast |
|
165 | * Tony Fast | |
143 |
|
166 | |||
144 | Issues closed in 7.9 |
|
167 | Issues closed in 7.9 | |
145 | -------------------- |
|
168 | -------------------- | |
146 |
|
169 | |||
147 | GitHub stats for 2019/08/30 - 2019/10/25 (tag: 7.8.0) |
|
170 | GitHub stats for 2019/08/30 - 2019/10/25 (tag: 7.8.0) | |
148 |
|
171 | |||
149 | These lists are automatically generated, and may be incomplete or contain duplicates. |
|
172 | These lists are automatically generated, and may be incomplete or contain duplicates. | |
150 |
|
173 | |||
151 | We closed 1 issues and merged 9 pull requests. |
|
174 | We closed 1 issues and merged 9 pull requests. | |
152 | The full list can be seen `on GitHub <https://github.com/ipython/ipython/issues?q=milestone%3A7.9>`__ |
|
175 | The full list can be seen `on GitHub <https://github.com/ipython/ipython/issues?q=milestone%3A7.9>`__ | |
153 |
|
176 | |||
154 | The following 8 authors contributed 20 commits. |
|
177 | The following 8 authors contributed 20 commits. | |
155 |
|
178 | |||
156 | * Benjamin Ragan-Kelley |
|
179 | * Benjamin Ragan-Kelley | |
157 | * Hugo |
|
180 | * Hugo | |
158 | * Matthias Bussonnier |
|
181 | * Matthias Bussonnier | |
159 | * mfh92 |
|
182 | * mfh92 | |
160 | * Mohammad Hossein Sekhavat |
|
183 | * Mohammad Hossein Sekhavat | |
161 | * Niclas |
|
184 | * Niclas | |
162 | * Vidar Tonaas Fauske |
|
185 | * Vidar Tonaas Fauske | |
163 | * Георгий Фролов |
|
186 | * Георгий Фролов | |
164 |
|
187 | |||
165 | Issues closed in 7.8 |
|
188 | Issues closed in 7.8 | |
166 | -------------------- |
|
189 | -------------------- | |
167 |
|
190 | |||
168 | GitHub stats for 2019/07/26 - 2019/08/30 (tag: 7.7.0) |
|
191 | GitHub stats for 2019/07/26 - 2019/08/30 (tag: 7.7.0) | |
169 |
|
192 | |||
170 | These lists are automatically generated, and may be incomplete or contain duplicates. |
|
193 | These lists are automatically generated, and may be incomplete or contain duplicates. | |
171 |
|
194 | |||
172 | We closed 1 issues and merged 4 pull requests. |
|
195 | We closed 1 issues and merged 4 pull requests. | |
173 | The full list can be seen `on GitHub <https://github.com/ipython/ipython/issues?q=milestone%3A7.8>`__ |
|
196 | The full list can be seen `on GitHub <https://github.com/ipython/ipython/issues?q=milestone%3A7.8>`__ | |
174 |
|
197 | |||
175 | The following 5 authors contributed 27 commits. |
|
198 | The following 5 authors contributed 27 commits. | |
176 |
|
199 | |||
177 | * Dan Allan |
|
200 | * Dan Allan | |
178 | * Matthias Bussonnier |
|
201 | * Matthias Bussonnier | |
179 | * Min ho Kim |
|
202 | * Min ho Kim | |
180 | * Oscar Gustafsson |
|
203 | * Oscar Gustafsson | |
181 | * Terry Davis |
|
204 | * Terry Davis | |
182 |
|
205 | |||
183 | Issues closed in 7.7 |
|
206 | Issues closed in 7.7 | |
184 | -------------------- |
|
207 | -------------------- | |
185 |
|
208 | |||
186 | GitHub stats for 2019/07/03 - 2019/07/26 (tag: 7.6.1) |
|
209 | GitHub stats for 2019/07/03 - 2019/07/26 (tag: 7.6.1) | |
187 |
|
210 | |||
188 | These lists are automatically generated, and may be incomplete or contain duplicates. |
|
211 | These lists are automatically generated, and may be incomplete or contain duplicates. | |
189 |
|
212 | |||
190 | We closed 5 issues and merged 9 pull requests. |
|
213 | We closed 5 issues and merged 9 pull requests. | |
191 | The full list can be seen `on GitHub <https://github.com/ipython/ipython/issues?q=milestone%3A7.7>`__ |
|
214 | The full list can be seen `on GitHub <https://github.com/ipython/ipython/issues?q=milestone%3A7.7>`__ | |
192 |
|
215 | |||
193 | The following 8 authors contributed 26 commits. |
|
216 | The following 8 authors contributed 26 commits. | |
194 |
|
217 | |||
195 | * Brandon T. Willard |
|
218 | * Brandon T. Willard | |
196 | * juanis2112 |
|
219 | * juanis2112 | |
197 | * lllf |
|
220 | * lllf | |
198 | * Matthias Bussonnier |
|
221 | * Matthias Bussonnier | |
199 | * Min ho Kim |
|
222 | * Min ho Kim | |
200 | * Oriol (Prodesk) |
|
223 | * Oriol (Prodesk) | |
201 | * Po-Chuan Hsieh |
|
224 | * Po-Chuan Hsieh | |
202 | * techassetskris |
|
225 | * techassetskris | |
203 |
|
226 | |||
204 | Issues closed in 7.6 |
|
227 | Issues closed in 7.6 | |
205 | -------------------- |
|
228 | -------------------- | |
206 |
|
229 | |||
207 | GitHub stats for 2019/04/24 - 2019/06/28 (tag: 7.5.0) |
|
230 | GitHub stats for 2019/04/24 - 2019/06/28 (tag: 7.5.0) | |
208 |
|
231 | |||
209 | These lists are automatically generated, and may be incomplete or contain duplicates. |
|
232 | These lists are automatically generated, and may be incomplete or contain duplicates. | |
210 |
|
233 | |||
211 | We closed 9 issues and merged 43 pull requests. |
|
234 | We closed 9 issues and merged 43 pull requests. | |
212 | The full list can be seen `on GitHub <https://github.com/ipython/ipython/issues?q=milestone%3A7.6>`__ |
|
235 | The full list can be seen `on GitHub <https://github.com/ipython/ipython/issues?q=milestone%3A7.6>`__ | |
213 |
|
236 | |||
214 | The following 19 authors contributed 144 commits. |
|
237 | The following 19 authors contributed 144 commits. | |
215 |
|
238 | |||
216 | * Alok Singh |
|
239 | * Alok Singh | |
217 | * Andreas |
|
240 | * Andreas | |
218 | * Antony Lee |
|
241 | * Antony Lee | |
219 | * Daniel Hahler |
|
242 | * Daniel Hahler | |
220 | * Ed OBrien |
|
243 | * Ed OBrien | |
221 | * Kevin Sheppard |
|
244 | * Kevin Sheppard | |
222 | * Luciana da Costa Marques |
|
245 | * Luciana da Costa Marques | |
223 | * Maor Kleinberger |
|
246 | * Maor Kleinberger | |
224 | * Matthias Bussonnier |
|
247 | * Matthias Bussonnier | |
225 | * Miro Hrončok |
|
248 | * Miro Hrončok | |
226 | * Niclas |
|
249 | * Niclas | |
227 | * Nikita Bezdolniy |
|
250 | * Nikita Bezdolniy | |
228 | * Oriol Abril |
|
251 | * Oriol Abril | |
229 | * Piers Titus van der Torren |
|
252 | * Piers Titus van der Torren | |
230 | * Pragnya Srinivasan |
|
253 | * Pragnya Srinivasan | |
231 | * Robin Gustafsson |
|
254 | * Robin Gustafsson | |
232 | * stonebig |
|
255 | * stonebig | |
233 | * Thomas A Caswell |
|
256 | * Thomas A Caswell | |
234 | * zzzz-qq |
|
257 | * zzzz-qq | |
235 |
|
258 | |||
236 |
|
259 | |||
237 | Issues closed in 7.5 |
|
260 | Issues closed in 7.5 | |
238 | -------------------- |
|
261 | -------------------- | |
239 |
|
262 | |||
240 | GitHub stats for 2019/03/21 - 2019/04/24 (tag: 7.4.0) |
|
263 | GitHub stats for 2019/03/21 - 2019/04/24 (tag: 7.4.0) | |
241 |
|
264 | |||
242 | These lists are automatically generated, and may be incomplete or contain duplicates. |
|
265 | These lists are automatically generated, and may be incomplete or contain duplicates. | |
243 |
|
266 | |||
244 | We closed 2 issues and merged 9 pull requests. |
|
267 | We closed 2 issues and merged 9 pull requests. | |
245 | The full list can be seen `on GitHub <https://github.com/ipython/ipython/issues?q=milestone%3A7.5>`__ |
|
268 | The full list can be seen `on GitHub <https://github.com/ipython/ipython/issues?q=milestone%3A7.5>`__ | |
246 |
|
269 | |||
247 | The following 7 authors contributed 28 commits. |
|
270 | The following 7 authors contributed 28 commits. | |
248 |
|
271 | |||
249 | * Akshay Paropkari |
|
272 | * Akshay Paropkari | |
250 | * Benjamin Ragan-Kelley |
|
273 | * Benjamin Ragan-Kelley | |
251 | * Ivan Tham |
|
274 | * Ivan Tham | |
252 | * Matthias Bussonnier |
|
275 | * Matthias Bussonnier | |
253 | * Nick Tallant |
|
276 | * Nick Tallant | |
254 | * Sebastian Witowski |
|
277 | * Sebastian Witowski | |
255 | * stef-ubuntu |
|
278 | * stef-ubuntu | |
256 |
|
279 | |||
257 |
|
280 | |||
258 | Issues closed in 7.4 |
|
281 | Issues closed in 7.4 | |
259 | -------------------- |
|
282 | -------------------- | |
260 |
|
283 | |||
261 | GitHub stats for 2019/02/18 - 2019/03/21 (tag: 7.3.0) |
|
284 | GitHub stats for 2019/02/18 - 2019/03/21 (tag: 7.3.0) | |
262 |
|
285 | |||
263 | These lists are automatically generated, and may be incomplete or contain duplicates. |
|
286 | These lists are automatically generated, and may be incomplete or contain duplicates. | |
264 |
|
287 | |||
265 | We closed 9 issues and merged 20 pull requests. |
|
288 | We closed 9 issues and merged 20 pull requests. | |
266 | The full list can be seen `on GitHub <https://github.com/ipython/ipython/issues?q=milestone%3A7.3>`__ |
|
289 | The full list can be seen `on GitHub <https://github.com/ipython/ipython/issues?q=milestone%3A7.3>`__ | |
267 |
|
290 | |||
268 | The following 23 authors contributed 69 commits. |
|
291 | The following 23 authors contributed 69 commits. | |
269 |
|
292 | |||
270 | * anatoly techtonik |
|
293 | * anatoly techtonik | |
271 | * Benjamin Ragan-Kelley |
|
294 | * Benjamin Ragan-Kelley | |
272 | * bnables |
|
295 | * bnables | |
273 | * Frédéric Chapoton |
|
296 | * Frédéric Chapoton | |
274 | * Gabriel Potter |
|
297 | * Gabriel Potter | |
275 | * Ian Bell |
|
298 | * Ian Bell | |
276 | * Jake VanderPlas |
|
299 | * Jake VanderPlas | |
277 | * Jan S. (Milania1) |
|
300 | * Jan S. (Milania1) | |
278 | * Jesse Widner |
|
301 | * Jesse Widner | |
279 | * jsnydes |
|
302 | * jsnydes | |
280 | * Kyungdahm Yun |
|
303 | * Kyungdahm Yun | |
281 | * Laurent Gautier |
|
304 | * Laurent Gautier | |
282 | * Luciana da Costa Marques |
|
305 | * Luciana da Costa Marques | |
283 | * Matan Gover |
|
306 | * Matan Gover | |
284 | * Matthias Bussonnier |
|
307 | * Matthias Bussonnier | |
285 | * memeplex |
|
308 | * memeplex | |
286 | * Mickaël Schoentgen |
|
309 | * Mickaël Schoentgen | |
287 | * Partha P. Mukherjee |
|
310 | * Partha P. Mukherjee | |
288 | * Philipp A |
|
311 | * Philipp A | |
289 | * Sanyam Agarwal |
|
312 | * Sanyam Agarwal | |
290 | * Steve Nicholson |
|
313 | * Steve Nicholson | |
291 | * Tony Fast |
|
314 | * Tony Fast | |
292 | * Wouter Overmeire |
|
315 | * Wouter Overmeire | |
293 |
|
316 | |||
294 |
|
317 | |||
295 | Issues closed in 7.3 |
|
318 | Issues closed in 7.3 | |
296 | -------------------- |
|
319 | -------------------- | |
297 |
|
320 | |||
298 | GitHub stats for 2018/11/30 - 2019/02/18 (tag: 7.2.0) |
|
321 | GitHub stats for 2018/11/30 - 2019/02/18 (tag: 7.2.0) | |
299 |
|
322 | |||
300 | These lists are automatically generated, and may be incomplete or contain duplicates. |
|
323 | These lists are automatically generated, and may be incomplete or contain duplicates. | |
301 |
|
324 | |||
302 | We closed 4 issues and merged 20 pull requests. |
|
325 | We closed 4 issues and merged 20 pull requests. | |
303 | The full list can be seen `on GitHub <https://github.com/ipython/ipython/issues?q=milestone%3A7.3>`__ |
|
326 | The full list can be seen `on GitHub <https://github.com/ipython/ipython/issues?q=milestone%3A7.3>`__ | |
304 |
|
327 | |||
305 | The following 17 authors contributed 99 commits. |
|
328 | The following 17 authors contributed 99 commits. | |
306 |
|
329 | |||
307 | * anatoly techtonik |
|
330 | * anatoly techtonik | |
308 | * Benjamin Ragan-Kelley |
|
331 | * Benjamin Ragan-Kelley | |
309 | * Gabriel Potter |
|
332 | * Gabriel Potter | |
310 | * Ian Bell |
|
333 | * Ian Bell | |
311 | * Jake VanderPlas |
|
334 | * Jake VanderPlas | |
312 | * Jan S. (Milania1) |
|
335 | * Jan S. (Milania1) | |
313 | * Jesse Widner |
|
336 | * Jesse Widner | |
314 | * Kyungdahm Yun |
|
337 | * Kyungdahm Yun | |
315 | * Laurent Gautier |
|
338 | * Laurent Gautier | |
316 | * Matthias Bussonnier |
|
339 | * Matthias Bussonnier | |
317 | * memeplex |
|
340 | * memeplex | |
318 | * Mickaël Schoentgen |
|
341 | * Mickaël Schoentgen | |
319 | * Partha P. Mukherjee |
|
342 | * Partha P. Mukherjee | |
320 | * Philipp A |
|
343 | * Philipp A | |
321 | * Sanyam Agarwal |
|
344 | * Sanyam Agarwal | |
322 | * Steve Nicholson |
|
345 | * Steve Nicholson | |
323 | * Tony Fast |
|
346 | * Tony Fast | |
324 |
|
347 | |||
325 | Issues closed in 7.2 |
|
348 | Issues closed in 7.2 | |
326 | -------------------- |
|
349 | -------------------- | |
327 |
|
350 | |||
328 | GitHub stats for 2018/10/28 - 2018/11/29 (tag: 7.1.1) |
|
351 | GitHub stats for 2018/10/28 - 2018/11/29 (tag: 7.1.1) | |
329 |
|
352 | |||
330 | These lists are automatically generated, and may be incomplete or contain duplicates. |
|
353 | These lists are automatically generated, and may be incomplete or contain duplicates. | |
331 |
|
354 | |||
332 | We closed 2 issues and merged 18 pull requests. |
|
355 | We closed 2 issues and merged 18 pull requests. | |
333 | The full list can be seen `on GitHub <https://github.com/ipython/ipython/issues?q=milestone%3A7.2>`__ |
|
356 | The full list can be seen `on GitHub <https://github.com/ipython/ipython/issues?q=milestone%3A7.2>`__ | |
334 |
|
357 | |||
335 | The following 16 authors contributed 95 commits. |
|
358 | The following 16 authors contributed 95 commits. | |
336 |
|
359 | |||
337 | * Antony Lee |
|
360 | * Antony Lee | |
338 | * Benjamin Ragan-Kelley |
|
361 | * Benjamin Ragan-Kelley | |
339 | * CarsonGSmith |
|
362 | * CarsonGSmith | |
340 | * Chris Mentzel |
|
363 | * Chris Mentzel | |
341 | * Christopher Brown |
|
364 | * Christopher Brown | |
342 | * Dan Allan |
|
365 | * Dan Allan | |
343 | * Elliott Morgan Jobson |
|
366 | * Elliott Morgan Jobson | |
344 | * is-this-valid |
|
367 | * is-this-valid | |
345 | * kd2718 |
|
368 | * kd2718 | |
346 | * Kevin Hess |
|
369 | * Kevin Hess | |
347 | * Martin Bergtholdt |
|
370 | * Martin Bergtholdt | |
348 | * Matthias Bussonnier |
|
371 | * Matthias Bussonnier | |
349 | * Nicholas Bollweg |
|
372 | * Nicholas Bollweg | |
350 | * Pavel Karateev |
|
373 | * Pavel Karateev | |
351 | * Philipp A |
|
374 | * Philipp A | |
352 | * Reuben Morais |
|
375 | * Reuben Morais | |
353 |
|
376 | |||
354 | Issues closed in 7.1 |
|
377 | Issues closed in 7.1 | |
355 | -------------------- |
|
378 | -------------------- | |
356 |
|
379 | |||
357 | GitHub stats for 2018/09/27 - 2018/10/27 (since tag: 7.0.1) |
|
380 | GitHub stats for 2018/09/27 - 2018/10/27 (since tag: 7.0.1) | |
358 |
|
381 | |||
359 | These lists are automatically generated, and may be incomplete or contain duplicates. |
|
382 | These lists are automatically generated, and may be incomplete or contain duplicates. | |
360 |
|
383 | |||
361 | We closed 31 issues and merged 54 pull requests. |
|
384 | We closed 31 issues and merged 54 pull requests. | |
362 | The full list can be seen `on GitHub <https://github.com/ipython/ipython/issues?q=milestone%3A7.1>`__ |
|
385 | The full list can be seen `on GitHub <https://github.com/ipython/ipython/issues?q=milestone%3A7.1>`__ | |
363 |
|
386 | |||
364 | The following 33 authors contributed 254 commits. |
|
387 | The following 33 authors contributed 254 commits. | |
365 |
|
388 | |||
366 | * ammarmallik |
|
389 | * ammarmallik | |
367 | * Audrey Dutcher |
|
390 | * Audrey Dutcher | |
368 | * Bart Skowron |
|
391 | * Bart Skowron | |
369 | * Benjamin Ragan-Kelley |
|
392 | * Benjamin Ragan-Kelley | |
370 | * BinaryCrochet |
|
393 | * BinaryCrochet | |
371 | * Chris Barker |
|
394 | * Chris Barker | |
372 | * Christopher Moura |
|
395 | * Christopher Moura | |
373 | * Dedipyaman Das |
|
396 | * Dedipyaman Das | |
374 | * Dominic Kuang |
|
397 | * Dominic Kuang | |
375 | * Elyashiv |
|
398 | * Elyashiv | |
376 | * Emil Hessman |
|
399 | * Emil Hessman | |
377 | * felixzhuologist |
|
400 | * felixzhuologist | |
378 | * hongshaoyang |
|
401 | * hongshaoyang | |
379 | * Hugo |
|
402 | * Hugo | |
380 | * kd2718 |
|
403 | * kd2718 | |
381 | * kory donati |
|
404 | * kory donati | |
382 | * Kory Donati |
|
405 | * Kory Donati | |
383 | * koryd |
|
406 | * koryd | |
384 | * luciana |
|
407 | * luciana | |
385 | * luz.paz |
|
408 | * luz.paz | |
386 | * Massimo Santini |
|
409 | * Massimo Santini | |
387 | * Matthias Bussonnier |
|
410 | * Matthias Bussonnier | |
388 | * Matthias Geier |
|
411 | * Matthias Geier | |
389 | * meeseeksdev[bot] |
|
412 | * meeseeksdev[bot] | |
390 | * Michael Penkov |
|
413 | * Michael Penkov | |
391 | * Mukesh Bhandarkar |
|
414 | * Mukesh Bhandarkar | |
392 | * Nguyen Duy Hai |
|
415 | * Nguyen Duy Hai | |
393 | * Roy Wellington Ⅳ |
|
416 | * Roy Wellington Ⅳ | |
394 | * Sha Liu |
|
417 | * Sha Liu | |
395 | * Shao Yang |
|
418 | * Shao Yang | |
396 | * Shashank Kumar |
|
419 | * Shashank Kumar | |
397 | * Tony Fast |
|
420 | * Tony Fast | |
398 | * wim glenn |
|
421 | * wim glenn | |
399 |
|
422 | |||
400 |
|
423 | |||
401 | Issues closed in 7.0 |
|
424 | Issues closed in 7.0 | |
402 | -------------------- |
|
425 | -------------------- | |
403 |
|
426 | |||
404 | GitHub stats for 2018/07/29 - 2018/09/27 (since tag: 6.5.0) |
|
427 | GitHub stats for 2018/07/29 - 2018/09/27 (since tag: 6.5.0) | |
405 |
|
428 | |||
406 | These lists are automatically generated, and may be incomplete or contain duplicates. |
|
429 | These lists are automatically generated, and may be incomplete or contain duplicates. | |
407 |
|
430 | |||
408 | We closed 20 issues and merged 76 pull requests. |
|
431 | We closed 20 issues and merged 76 pull requests. | |
409 | The full list can be seen `on GitHub <https://github.com/ipython/ipython/issues?q=milestone%3A7.0>`__ |
|
432 | The full list can be seen `on GitHub <https://github.com/ipython/ipython/issues?q=milestone%3A7.0>`__ | |
410 |
|
433 | |||
411 | The following 49 authors contributed 471 commits. |
|
434 | The following 49 authors contributed 471 commits. | |
412 |
|
435 | |||
413 | * alphaCTzo7G |
|
436 | * alphaCTzo7G | |
414 | * Alyssa Whitwell |
|
437 | * Alyssa Whitwell | |
415 | * Anatol Ulrich |
|
438 | * Anatol Ulrich | |
416 | * apunisal |
|
439 | * apunisal | |
417 | * Benjamin Ragan-Kelley |
|
440 | * Benjamin Ragan-Kelley | |
418 | * Chaz Reid |
|
441 | * Chaz Reid | |
419 | * Christoph |
|
442 | * Christoph | |
420 | * Dale Jung |
|
443 | * Dale Jung | |
421 | * Dave Hirschfeld |
|
444 | * Dave Hirschfeld | |
422 | * dhirschf |
|
445 | * dhirschf | |
423 | * Doug Latornell |
|
446 | * Doug Latornell | |
424 | * Fernando Perez |
|
447 | * Fernando Perez | |
425 | * Fred Mitchell |
|
448 | * Fred Mitchell | |
426 | * Gabriel Potter |
|
449 | * Gabriel Potter | |
427 | * gpotter2 |
|
450 | * gpotter2 | |
428 | * Grant Nestor |
|
451 | * Grant Nestor | |
429 | * hongshaoyang |
|
452 | * hongshaoyang | |
430 | * Hugo |
|
453 | * Hugo | |
431 | * J Forde |
|
454 | * J Forde | |
432 | * Jonathan Slenders |
|
455 | * Jonathan Slenders | |
433 | * Jörg Dietrich |
|
456 | * Jörg Dietrich | |
434 | * Kyle Kelley |
|
457 | * Kyle Kelley | |
435 | * luz.paz |
|
458 | * luz.paz | |
436 | * M Pacer |
|
459 | * M Pacer | |
437 | * Matthew R. Scott |
|
460 | * Matthew R. Scott | |
438 | * Matthew Seal |
|
461 | * Matthew Seal | |
439 | * Matthias Bussonnier |
|
462 | * Matthias Bussonnier | |
440 | * meeseeksdev[bot] |
|
463 | * meeseeksdev[bot] | |
441 | * Michael Käufl |
|
464 | * Michael Käufl | |
442 | * Olesya Baranova |
|
465 | * Olesya Baranova | |
443 | * oscar6echo |
|
466 | * oscar6echo | |
444 | * Paul Ganssle |
|
467 | * Paul Ganssle | |
445 | * Paul Ivanov |
|
468 | * Paul Ivanov | |
446 | * Peter Parente |
|
469 | * Peter Parente | |
447 | * prasanth |
|
470 | * prasanth | |
448 | * Shailyn javier Ortiz jimenez |
|
471 | * Shailyn javier Ortiz jimenez | |
449 | * Sourav Singh |
|
472 | * Sourav Singh | |
450 | * Srinivas Reddy Thatiparthy |
|
473 | * Srinivas Reddy Thatiparthy | |
451 | * Steven Silvester |
|
474 | * Steven Silvester | |
452 | * stonebig |
|
475 | * stonebig | |
453 | * Subhendu Ranjan Mishra |
|
476 | * Subhendu Ranjan Mishra | |
454 | * Takafumi Arakaki |
|
477 | * Takafumi Arakaki | |
455 | * Thomas A Caswell |
|
478 | * Thomas A Caswell | |
456 | * Thomas Kluyver |
|
479 | * Thomas Kluyver | |
457 | * Todd |
|
480 | * Todd | |
458 | * Wei Yen |
|
481 | * Wei Yen | |
459 | * Yarko Tymciurak |
|
482 | * Yarko Tymciurak | |
460 | * Yutao Yuan |
|
483 | * Yutao Yuan | |
461 | * Zi Chong Kao |
|
484 | * Zi Chong Kao |
General Comments 0
You need to be logged in to leave comments.
Login now