Skip to content

Commit 5c3aa4e

Browse files
committed
Increase to v1.1.0
1 parent b5074c1 commit 5c3aa4e

File tree

6 files changed

+17
-11
lines changed

6 files changed

+17
-11
lines changed

doc/api/more/types_linq.more.extrema_enumerable.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ Returns
4848
Identical to parent.
4949

5050
Revisions:
51-
- main: Fixed incorrect override of Enumerable.take() when it takes a slice.
51+
- v1.1.0: Fixed incorrect override of Enumerable.take() when it takes a slice.
5252

5353
----
5454

doc/api/more/types_linq.more.more_enumerable.rst

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -97,7 +97,7 @@ Consumes the sequence completely. This method iterates the sequence immediately
9797
any intermediate data.
9898

9999
Revisions:
100-
- main: New.
100+
- v1.1.0: New.
101101

102102
----
103103

@@ -120,7 +120,7 @@ Example
120120
[1, 2, 3, 1, 2, 3, 1, 2, 3]
121121

122122
Revisions:
123-
- main: New.
123+
- v1.1.0: New.
124124

125125
----
126126

@@ -475,7 +475,7 @@ Example
475475
[('a', 1), ('b', 2), ('c', 1), ('a', 1), ('e', 3), ('a', 2)]
476476

477477
Revisions:
478-
- main: New.
478+
- v1.1.0: New.
479479

480480
----
481481

@@ -498,7 +498,7 @@ Example
498498
[('a', 1), ('b', 4), ('c', 1), ('a', 1), ('E', 3), ('f', 2)]
499499

500500
Revisions:
501-
- main: New.
501+
- v1.1.0: New.
502502

503503
----
504504

doc/to-start/changelog.rst

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,12 @@ Changelog
33

44
`GitHub Releases <https://github.com/cleoold/types-linq/releases>`_
55

6+
v1.1.0
7+
********
8+
9+
- Add consume(), cycle(), and run_length_encode() to MoreEnumerable class
10+
- Fix error in ExtremaEnumerable.take() when it takes a slice
11+
612
v1.0.0
713
********
814

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55

66
setup(
77
name='types-linq',
8-
version='v1.0.0',
8+
version='v1.1.0',
99
url='https://github.com/cleoold/types-linq',
1010
license='BSD 2-Clause License',
1111
author='cleoold',

types_linq/more/extrema_enumerable.pyi

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ class ExtremaEnumerable(MoreEnumerable[TSource_co], Generic[TSource_co, TKey]):
4242
Identical to parent.
4343
4444
Revisions:
45-
- main: Fixed incorrect override of Enumerable.take() when it takes a slice.
45+
- v1.1.0: Fixed incorrect override of Enumerable.take() when it takes a slice.
4646
'''
4747

4848
def take_last(self, count: int) -> MoreEnumerable[TSource_co]:

types_linq/more/more_enumerable.pyi

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ class MoreEnumerable(Enumerable[TSource_co]):
7676
any intermediate data.
7777
7878
Revisions:
79-
- main: New.
79+
- v1.1.0: New.
8080
'''
8181

8282
def cycle(self, count: Optional[int] = None) -> MoreEnumerable[TSource_co]:
@@ -91,7 +91,7 @@ class MoreEnumerable(Enumerable[TSource_co]):
9191
[1, 2, 3, 1, 2, 3, 1, 2, 3]
9292
9393
Revisions:
94-
- main: New.
94+
- v1.1.0: New.
9595
'''
9696

9797
def enumerate(self, start: int = 0) -> MoreEnumerable[Tuple[int, TSource_co]]:
@@ -329,7 +329,7 @@ class MoreEnumerable(Enumerable[TSource_co]):
329329
[('a', 1), ('b', 2), ('c', 1), ('a', 1), ('e', 3), ('a', 2)]
330330
331331
Revisions:
332-
- main: New.
332+
- v1.1.0: New.
333333
'''
334334

335335
@overload
@@ -347,7 +347,7 @@ class MoreEnumerable(Enumerable[TSource_co]):
347347
[('a', 1), ('b', 4), ('c', 1), ('a', 1), ('E', 3), ('f', 2)]
348348
349349
Revisions:
350-
- main: New.
350+
- v1.1.0: New.
351351
'''
352352

353353
@staticmethod

0 commit comments

Comments
 (0)