Skip to content

Commit 91fa29c

Browse files
committed
chore: release 0.2.0
1 parent 0a1d588 commit 91fa29c

File tree

4 files changed

+25
-17
lines changed

4 files changed

+25
-17
lines changed

CHANGELOG.md

Lines changed: 12 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,25 @@
1+
## [0.2.0]
2+
3+
- update dependencies, min Dart SDK is now 3.2.6
4+
- fix handling of the DATE attribute via [#6](https://github.com/orestesgaolin/gedcom-dart/pull/6) by [@romanbsd](https://github.com/romanbsd)
5+
16
## [0.1.0] - Migrate to nnbd
27

3-
* migrate to null safety and update dependencies
8+
- migrate to null safety and update dependencies
49

510
## [0.0.3] - More features
611

712
### Features
813

9-
* add convenience methods to individual ([dcd7651](https://github.com/orestesgaolin/gedcom-dart/commit/dcd7651f8718839ed4f3e57242da3c1227a5029d))
10-
* add date, birth and death elements ([3f4e2fa](https://github.com/orestesgaolin/gedcom-dart/commit/3f4e2fa072a0089d468d29283cbe740b7daf0c72))
11-
* add getAllFamilies ([4874dbe](https://github.com/orestesgaolin/gedcom-dart/commit/4874dbe79811871640043ee95e10679f195b5d22))
12-
* add helper methods to family element ([cfaa678](https://github.com/orestesgaolin/gedcom-dart/commit/cfaa678b7ceba36d5f392290a97aa576fe98d1e2))
14+
- add convenience methods to individual ([dcd7651](https://github.com/orestesgaolin/gedcom-dart/commit/dcd7651f8718839ed4f3e57242da3c1227a5029d))
15+
- add date, birth and death elements ([3f4e2fa](https://github.com/orestesgaolin/gedcom-dart/commit/3f4e2fa072a0089d468d29283cbe740b7daf0c72))
16+
- add getAllFamilies ([4874dbe](https://github.com/orestesgaolin/gedcom-dart/commit/4874dbe79811871640043ee95e10679f195b5d22))
17+
- add helper methods to family element ([cfaa678](https://github.com/orestesgaolin/gedcom-dart/commit/cfaa678b7ceba36d5f392290a97aa576fe98d1e2))
1318

1419
## [0.0.2] - Updates
1520

16-
* add getElementsList, getElementsMap, getFamilies
21+
- add getElementsList, getElementsMap, getFamilies
1722

1823
## [0.0.1] - Initial release
1924

20-
* Basic initial release with just a simple `parse` method
25+
- Basic initial release with just a simple `parse` method

README.md

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,9 @@ Port of [python-gedcom](https://github.com/nickreynke/python-gedcom) library to
44

55
GEDCOM files contain ancestry data. The parser is currently supporting the GEDCOM 5.5 format.
66

7+
> [!NOTE]
8+
> Looking for contributors to implement [support for GEDCOM 7.0](https://github.com/orestesgaolin/gedcom-dart/issues/5).
9+
710
# Warning
811

912
The package is still in development. Only selected features are supported.
@@ -32,4 +35,4 @@ Ported to Dart from Python GEDCOM Parser
3235

3336
This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.
3437

35-
You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
38+
You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.

pubspec.lock

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -5,23 +5,23 @@ packages:
55
dependency: transitive
66
description:
77
name: _fe_analyzer_shared
8-
sha256: "45cfa8471b89fb6643fe9bf51bd7931a76b8f5ec2d65de4fb176dba8d4f22c77"
8+
sha256: "5aaf60d96c4cd00fe7f21594b5ad6a1b699c80a27420f8a837f4d68473ef09e3"
99
url: "https://pub.dev"
1010
source: hosted
11-
version: "73.0.0"
11+
version: "68.0.0"
1212
_macros:
1313
dependency: transitive
1414
description: dart
1515
source: sdk
16-
version: "0.3.2"
16+
version: "0.1.0"
1717
analyzer:
1818
dependency: transitive
1919
description:
2020
name: analyzer
21-
sha256: "4959fec185fe70cce007c57e9ab6983101dbe593d2bf8bbfb4453aaec0cf470a"
21+
sha256: "21f1d3720fd1c70316399d5e2bccaebb415c434592d778cce8acb967b8578808"
2222
url: "https://pub.dev"
2323
source: hosted
24-
version: "6.8.0"
24+
version: "6.5.0"
2525
args:
2626
dependency: transitive
2727
description:
@@ -146,10 +146,10 @@ packages:
146146
dependency: transitive
147147
description:
148148
name: macros
149-
sha256: "0acaed5d6b7eab89f63350bccd82119e6c602df0f391260d0e32b5e23db79536"
149+
sha256: "12e8a9842b5a7390de7a781ec63d793527582398d16ea26c60fed58833c9ae79"
150150
url: "https://pub.dev"
151151
source: hosted
152-
version: "0.1.2-main.4"
152+
version: "0.1.0-main.0"
153153
matcher:
154154
dependency: transitive
155155
description:

pubspec.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
name: gedcom
22
description: Dart library to parse GEDCOM data from string input ported from
33
popular Python library
4-
version: 0.1.0
4+
version: 0.2.0
55
repository: https://github.com/orestesgaolin/gedcom-dart
66

77
environment:
8-
sdk: '>=3.2.6 <4.0.0'
8+
sdk: ">=3.2.6 <4.0.0"
99

1010
dependencies:
1111
collection: ^1.15.0

0 commit comments

Comments
 (0)