Skip to content

Commit

Permalink
fix: Fixed init loaders not run
Browse files Browse the repository at this point in the history
  • Loading branch information
Seven Du committed Jun 6, 2024
1 parent 4a75cc5 commit 2703e0f
Show file tree
Hide file tree
Showing 3 changed files with 21 additions and 2 deletions.
19 changes: 19 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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:
Expand Down
2 changes: 1 addition & 1 deletion lib/src/rc.dart
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ class RC {
}

if (loaders != null && loaders.isNotEmpty) {
for (final loader in _loaders) {
for (final loader in loaders) {
use(loader);
}
}
Expand Down
2 changes: 1 addition & 1 deletion pubspec.yaml
Original file line number Diff line number Diff line change
@@ -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:
Expand Down

0 comments on commit 2703e0f

Please sign in to comment.