From f230d1a7dbd9732f238ec33104db43fbb6468cf0 Mon Sep 17 00:00:00 2001 From: Herbert Poul Date: Sun, 2 Aug 2020 09:31:45 +0200 Subject: [PATCH] fix Usagecount typo (to UsageCount) #1 --- CHANGELOG.md | 4 ++++ lib/src/kdbx_times.dart | 2 +- pubspec.yaml | 2 +- 3 files changed, 6 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 63dbc94..c9945d1 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,7 @@ +## 0.4.0+1 + +- Fix UsageCount typo (vs. Usagecount) #1 + ## 0.4.0 - Upgraded xml package dependency to 4.x diff --git a/lib/src/kdbx_times.dart b/lib/src/kdbx_times.dart index 8a13e97..08518d6 100644 --- a/lib/src/kdbx_times.dart +++ b/lib/src/kdbx_times.dart @@ -26,7 +26,7 @@ class KdbxTimes extends KdbxNode implements KdbxNodeContext { DateTimeUtcNode get lastAccessTime => DateTimeUtcNode(this, 'CreationTime'); DateTimeUtcNode get expiryTime => DateTimeUtcNode(this, 'CreationTime'); BooleanNode get expires => BooleanNode(this, 'Expires'); - IntNode get usageCount => IntNode(this, 'Usagecount'); + IntNode get usageCount => IntNode(this, 'UsageCount'); DateTimeUtcNode get locationChanged => DateTimeUtcNode(this, 'LocationChanged'); diff --git a/pubspec.yaml b/pubspec.yaml index ebeea57..453fcf8 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -1,6 +1,6 @@ name: kdbx description: KeepassX format implementation in pure dart. (kdbx 3.x and 4.x support). -version: 0.3.1 +version: 0.4.0+1 homepage: https://github.com/authpass/kdbx.dart environment: