diff --git a/README.md b/README.md index c1a0e96..96ad531 100644 --- a/README.md +++ b/README.md @@ -216,8 +216,6 @@ Stream.of(2, 1, 3, 4).max().get() ```python fizz = Foo("fizz", 1) buzz = Foo("buzz", 2) -comparator = lambda x, y: x.num == y.num - Stream([buzz, fizz]).compare_with(Stream([fizz, buzz]), lambda x, y: x.num == y.num) ``` diff --git a/pyproject.toml b/pyproject.toml index 8198d49..60a62ba 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,9 +1,9 @@ [tool.poetry] name = "pyrio" -version = "1.0.0" +version = "1.1.0" authors = ["kaliv0 "] readme = "README.md" -description = "Java-inspired Streams library for 'functional'-style processing of collections and iterables using fluent APIs. Provides easy integration with itertools." +description = "Functional-style Streams library for processing collections and querying files (json, toml, yaml, xml, csv, tsv). Provides easy integration with itertools." keywords = ["Stream", "functional", "processing", "collections", "fluent API"] repository = "https://github.com/kaliv0/pyrio"