Skip to content

Commit 4af0794

Browse files
committed
fix(main): add platform implementations as dependencies
- Add all platform packages (android, ios, macos, windows, linux, web) as dependencies - Bump version to 2.0.1 - Update CHANGELOG with fix description - This fixes 'package does not exist' error when installing the plugin
1 parent 6ce9185 commit 4af0794

3 files changed

Lines changed: 21 additions & 7 deletions

File tree

packages/local_storage_cache/CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,12 @@
11
# Changelog
22

3+
## 2.0.1
4+
5+
### Fixed
6+
7+
* Fixed federated plugin configuration - added platform implementation packages as dependencies
8+
* This resolves the "package does not exist, or is not a plugin package" error when installing
9+
310
## 2.0.0
411

512
### New Features

packages/local_storage_cache/README.md

Lines changed: 7 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,10 @@
11
# local_storage_cache
22

33
[![Pub Version](https://img.shields.io/pub/v/local_storage_cache.svg)](https://pub.dev/packages/local_storage_cache)
4-
[![Build Status](https://github.com/protheeuz/local-storage-cache/actions/workflows/code-integration.yml/badge.svg)](https://github.com/protheeuz/local-storage-cache/actions/workflows/code-integration.yml)
5-
[![Code Coverage](https://codecov.io/gh/protheeuz/local-storage-cache/graph/badge.svg)](https://codecov.io/gh/protheeuz/local-storage-cache)
4+
[![Build Status](https://github.com/mathtechstudio/local-storage-cache/actions/workflows/code-integration.yml/badge.svg)](https://github.com/mathtechstudio/local-storage-cache/actions/workflows/code-integration.yml)
5+
[![Code Coverage](https://codecov.io/gh/mathtechstudio/local-storage-cache/graph/badge.svg)](https://codecov.io/gh/mathtechstudio/local-storage-cache)
66
[![License: MIT](https://img.shields.io/badge/License-MIT-blue.svg)](https://opensource.org/licenses/MIT)
7+
![Platforms](https://img.shields.io/badge/platforms-Android%20%7C%20iOS%20%7C%20macOS%20%7C%20Windows%20%7C%20Linux%20%7C%20Web-informational)
78

89
A comprehensive Flutter package for local storage and caching with advanced features including encryption, multi-space architecture, automatic schema migration, and high-performance query capabilities. Supports Android, iOS, macOS, Windows, Linux, and Web.
910

@@ -657,7 +658,7 @@ Contributions are welcome. To set up your development environment:
657658
1. Clone the repository:
658659

659660
```bash
660-
git clone https://github.com/protheeuz/local-storage-cache.git
661+
git clone https://github.com/mathtechstudio/local-storage-cache.git
661662
cd local-storage-cache
662663
```
663664

@@ -693,9 +694,9 @@ This project is licensed under the MIT License. See the [LICENSE](LICENSE) file
693694

694695
## Support
695696

696-
- Report issues on [GitHub Issues](https://github.com/protheeuz/local-storage-cache/issues)
697-
- Ask questions on [GitHub Discussions](https://github.com/protheeuz/local-storage-cache/discussions)
698-
- View the [changelog](CHANGELOG.md) for version history
697+
- Report issues on [GitHub Issues](https://github.com/mathtechstudio/local-storage-cache/issues)
698+
- Ask questions on [GitHub Discussions](https://github.com/mathtechstudio/local-storage-cache/discussions)
699+
- View the [CHANGELOG](CHANGELOG.md) for version history
699700

700701
## Acknowledgments
701702

packages/local_storage_cache/pubspec.yaml

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
name: local_storage_cache
22
description: A comprehensive Flutter package for managing local storage and caching with advanced features like encryption, TTL, multi-space architecture, and more.
3-
version: 2.0.0
3+
version: 2.0.1
44
homepage: https://github.com/mathtechstudio/local-storage-cache
55
repository: https://github.com/mathtechstudio/local-storage-cache
66

@@ -14,7 +14,13 @@ dependencies:
1414
crypto: ^3.0.7
1515
flutter:
1616
sdk: flutter
17+
local_storage_cache_android: ^2.0.0
18+
local_storage_cache_ios: ^2.0.0
19+
local_storage_cache_linux: ^2.0.0
20+
local_storage_cache_macos: ^2.0.0
1721
local_storage_cache_platform_interface: ^2.0.0
22+
local_storage_cache_web: ^2.0.0
23+
local_storage_cache_windows: ^2.0.0
1824
path: ^1.9.0
1925
path_provider: ^2.1.0
2026
plugin_platform_interface: ^2.1.0

0 commit comments

Comments
 (0)