You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* Correct table format
* Use single-line JSON label for code block
* Make grammar consistent, add punctuation and generally fix language a bit
* Make language used more uniformly consistent, structured and accurate and correct some spelling, grammar and punctuation
* Link file references to files
* Format names of function parameters
* Add language improvements to CHANGELOG.md
-Add`no_wrap` option to `head()`, `head_option()`, `first()`, `last()` and `last_option()`, as well as to `seq()`, `pseq()` and `Sequence` constructor
11
+
-Added support for empty sequence expressions `seq()`, `pseq()` (#159)
12
+
-Added`no_wrap` option to `head()`, `head_option()`, `first()`, `last()` and `last_option()`, as well as to `seq()`, `pseq()` and `Sequence` constructor
9
13
10
14
## Release 1.3.0
11
15
12
-
-added precompute attribute to reverse transformation (#137)
13
-
-Update setup.py dill to requirements.txt (#138)
16
+
-Added precompute attribute to reverse transformation (#137)
17
+
-Updated setup.py dill to requirements.txt (#138)
14
18
- Docstring of tail fixed (#140)
15
-
-adding extend feature (#144)
19
+
-Added extend feature (#144)
16
20
17
21
## Release 1.2.0
18
22
19
-
-Fix Broken link in readme
20
-
-Loosen version requirements #129
21
-
-Fix lint errors
22
-
-Fix StopIteration errors for Python 3.7 #132
23
-
-Drop support for python 3.4
23
+
-Fixed Broken link in readme
24
+
-Loosened version requirements #129
25
+
-Fixed lint errors
26
+
-Fixed StopIteration errors for Python 3.7 #132
27
+
-Dropped support for python 3.4
24
28
25
29
## Release 1.1.3
26
30
27
-
-Fix bug in `partition`https://github.com/EntilZha/PyFunctional/issues/124
31
+
-Fixed bug in `partition`https://github.com/EntilZha/PyFunctional/issues/124
28
32
29
33
## Release 1.1.0
30
34
31
35
- Implemented optimized version of `reduce_by_key`
- Fix bug in `grouped`https://github.com/EntilZha/PyFunctional/pull/123
36
-
- Fix bug in `to_csv`https://github.com/EntilZha/PyFunctional/pull/123
37
-
- Fix bug with incorrect wrapping of pandas dataframes https://github.com/EntilZha/PyFunctional/pull/122
38
-
- Allow variance on versions of certain packages: https://github.com/EntilZha/PyFunctional/pull/117 and https://github.com/EntilZha/PyFunctional/pull/116
39
+
- Added support for variance on versions of certain packages: https://github.com/EntilZha/PyFunctional/pull/117 and https://github.com/EntilZha/PyFunctional/pull/116
39
40
- Various typo fixes
40
41
- Various CI fixes
41
-
- Fix issue with `first/head` evaluating entire sequence https://github.com/EntilZha/PyFunctional/commit/fb8f3686cf94f072f4e6ed23a361952de1447dc8
42
-
- Drop CI testing and official support for Python 3.3
43
-
- Make import much faster by loading pandas more lazily https://github.com/EntilZha/PyFunctional/issues/99
42
+
- Dropped CI testing and official support for Python 3.3
43
+
- Made import much faster by loading pandas more lazily https://github.com/EntilZha/PyFunctional/issues/99
44
+
45
+
### Bug Fixes
46
+
47
+
- Fixed bug in `grouped`https://github.com/EntilZha/PyFunctional/pull/123
48
+
- Fixed bug in `to_csv`https://github.com/EntilZha/PyFunctional/pull/123
49
+
- Fixed bug with incorrect wrapping of pandas dataframes https://github.com/EntilZha/PyFunctional/pull/122
50
+
- Fixed issue with `first/head` evaluating entire sequence https://github.com/EntilZha/PyFunctional/commit/fb8f3686cf94f072f4e6ed23a361952de1447dc8
44
51
45
52
## Release 1.0.0
46
53
47
-
Reaching `1.0` primarily means that API stability has been reached so I don't expect to run into many new breaking changes.
54
+
Reaching `1.0` primarily means that API stability has been reached, so I don't expect to run into many new breaking changes.
48
55
49
56
### New Features
50
57
@@ -67,13 +74,13 @@ Reaching `1.0` primarily means that API stability has been reached so I don't ex
67
74
68
75
- Implemented pretty html repr for Jupyter
69
76
- Implemented proper parsing of pandas DataFrames
70
-
-Detect when its possible to pretty print a table and do so
77
+
-Added feature to detect when it's possible to pretty print a table and do so
71
78
-`list`/`to_list` have a parameter `n` to limit number of results
72
79
73
80
### Bug Fixes
74
81
75
82
- Fixed bug where `grouped` unnecessarily forces precomputation of sequence
76
-
-Remove package installations from default requirements that sometimes break installation on barebones systems in python 2.7
83
+
-Removed package installations from default requirements that sometimes break installation on barebones systems in python 2.7
77
84
78
85
## Release 0.7.0
79
86
@@ -96,14 +103,14 @@ Reaching `1.0` primarily means that API stability has been reached so I don't ex
96
103
### Contributors
97
104
98
105
- Thanks to [versae](https://github.com/versae) for implementing most of the `pseq` feature!
99
-
- Thanks to [ChuyuHsu](https://github.com/ChuyuHsu) for implemented large parts of the compression feature!
106
+
- Thanks to [ChuyuHsu](https://github.com/ChuyuHsu) for implementing large parts of the compression feature!
100
107
101
108
## Release 0.6.0
102
109
103
110
### New Features
104
111
105
112
- Added support for reading to and from SQLite databases
106
-
-Change project name to `PyFunctional` from `ScalaFunctional`
113
+
-Changed project name from `ScalaFunctional` to `PyFunctional`
107
114
- Added `to_pandas` call integration
108
115
109
116
### Internal Changes
@@ -125,13 +132,13 @@ Reaching `1.0` primarily means that API stability has been reached so I don't ex
125
132
126
133
- Fixed case where `_wrap` is changing named tuples to arrays when it should preserve them
127
134
- Fixed documentation on `to_file` which incorrectly copied from `seq.open` delimiter parameter
128
-
- Fixed `Sequence.zip_with_index` behavior. used to mimic `enumerate` by zipping on the left size
129
-
while scala and spark do zip on the right side. This introduces different behavior and more flexible
130
-
behavior in combination with `enumerate` A start parameter was also added like in `enumerate`
135
+
- Fixed `Sequence.zip_with_index` behavior, which used to mimic `enumerate` by zipping on the left side
136
+
while Scala and Spark zip on the right side. This introduces different but more flexible
137
+
behavior in combination with `enumerate`. A start parameter was also added like in `enumerate`
131
138
132
139
## Release 0.4.1
133
140
134
-
Fix python 3 build error due to wheel installation of enum34. Package no longer depends on enum34
141
+
Fixed python 3 build error due to wheel installation of enum34. Package no longer depends on enum34
135
142
136
143
## Release 0.4.0
137
144
@@ -156,7 +163,7 @@ Fix python 3 build error due to wheel installation of enum34. Package no longer
156
163
-`Sequence.to_file` to save files
157
164
-`Sequence.to_csv` to save csv files
158
165
- Improved documentation with more examples and mention LINQ explicitly
159
-
-Change PyPi keywords to improve discoverability
166
+
-Changed PyPi keywords to improve discoverability
160
167
- Created [Google groups mailing list](https://groups.google.com/forum/#!forum/scalafunctional)
0 commit comments