diff --git a/CHANGELOG.md b/CHANGELOG.md index 1e603df..fbfeeda 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,22 @@ +# RC v0.3.2 + +To install RC v0.3.2 with command: + +```bash +dart pub add orm:^0.3.2 +``` + +Or update your `pubspec.yaml` file: + +```yaml +dependencies: + rc: ^0.3.2 +``` + +## What's Changed + +* Fixed init loaders not run. + # RC v0.3.1 To install RC v0.3.1 with command: diff --git a/lib/src/rc.dart b/lib/src/rc.dart index 2222a81..914a36b 100644 --- a/lib/src/rc.dart +++ b/lib/src/rc.dart @@ -22,7 +22,7 @@ class RC { } if (loaders != null && loaders.isNotEmpty) { - for (final loader in _loaders) { + for (final loader in loaders) { use(loader); } } diff --git a/pubspec.yaml b/pubspec.yaml index c5e3018..2567530 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -1,7 +1,7 @@ name: rc description: >- RC is a configuration/collection manager that uses .(dot) to set and read collection contents. -version: 0.3.1 +version: 0.3.2 repository: https://github.com/odroe/rc environment: