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: