diff --git a/.gitignore b/.gitignore index c944841..7a0eba4 100644 --- a/.gitignore +++ b/.gitignore @@ -26,3 +26,5 @@ doc # Mac .DS_Store + +.atom/ diff --git a/AUTHORS b/AUTHORS index d653058..d91d631 100644 --- a/AUTHORS +++ b/AUTHORS @@ -6,3 +6,4 @@ Boris Kaul Kwang Yul Seo +Nelson Brochado diff --git a/CHANGELOG.md b/CHANGELOG.md index 77d2a47..b0e18ec 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,6 @@ +#### 1.0.2 + * Fixed a bug in Tuple7: implementation of operator == was buggy. + #### 1.0.1 * Fix all strong-mode warnings and errors. diff --git a/README.md b/README.md index 61c0db1..0fe1243 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,6 @@ # Tuple data structure -- [Tuple2], [Tuple3]... +- [Tuple2], [Tuple3], [Tuple4], [Tuple5], [Tuple6], [Tuple7] [![Build Status](https://travis-ci.org/kseo/tuple.svg)](https://travis-ci.org/kseo/tuple) [![Coverage Status](https://coveralls.io/repos/kseo/tuple/badge.svg?branch=master&service=github)](https://coveralls.io/github/kseo/tuple?branch=master) diff --git a/lib/src/tuple.dart b/lib/src/tuple.dart index 2dace3f..eeb86f7 100644 --- a/lib/src/tuple.dart +++ b/lib/src/tuple.dart @@ -465,8 +465,8 @@ class Tuple7 { o.item3 == item3 && o.item4 == item4 && o.item5 == item5 && - o.item5 == item6 && - o.item6 == item7; + o.item6 == item6 && + o.item7 == item7; @override int get hashCode => hashObjects([ diff --git a/lib/tuple.dart b/lib/tuple.dart index 115d8af..3734fb8 100644 --- a/lib/tuple.dart +++ b/lib/tuple.dart @@ -4,7 +4,7 @@ /// # Tuple data structure /// -/// - [Tuple2], [Tuple3]... +/// - [Tuple2], [Tuple3], [Tuple4], [Tuple5], [Tuple6], [Tuple7] /// /// ## Usage example /// diff --git a/pubspec.yaml b/pubspec.yaml index d60177c..8188863 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -1,10 +1,11 @@ name: tuple -version: 1.0.1 +version: 1.0.2 authors: - Boris Kaul - Kwang Yul Seo +- Nelson Brochado description: Tuple data structure -homepage: https://github.com/kseo/tuple +homepage: https://github.com/dart-lang/tuple environment: sdk: '>=1.6.0' dependencies: