Skip to content

Commit

Permalink
V7.6.2
Browse files Browse the repository at this point in the history
  • Loading branch information
escamoteur committed Aug 31, 2023
1 parent 497c67e commit a1a552e
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 3 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
[7.6.2] - 31.08.2023 fix linter error
[7.6.1] - 31.08.2023 version bump of dependencies and updates readme
[7.6.0] - 09.05.2023
* merged PR by lacopiroty https://github.com/fluttercommunity/get_it/pull/297 which now allows to access objects inside GetIt by runtime type too like
Expand Down
2 changes: 1 addition & 1 deletion example/pubspec.lock
Original file line number Diff line number Diff line change
Expand Up @@ -145,7 +145,7 @@ packages:
path: ".."
relative: true
source: path
version: "7.6.1"
version: "7.6.2"
glob:
dependency: transitive
description:
Expand Down
2 changes: 1 addition & 1 deletion lib/get_it.dart
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ typedef FactoryFuncParamAsync<T, P1, P2> = Future<T> Function(
);

/// Data structure used to identify a dependency by type and instanceName
class InitDependency extends Type {
class InitDependency implements Type {
final Type type;
final String? instanceName;

Expand Down
2 changes: 1 addition & 1 deletion pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: get_it
description: Simple direct Service Locator that allows to decouple the interface from a concrete implementation and to access the concrete implementation from everywhere in your App"
version: 7.6.1
version: 7.6.2
maintainer: Thomas Burkhart (@escamoteur)
homepage: https://github.com/fluttercommunity/get_it

Expand Down

0 comments on commit a1a552e

Please sign in to comment.