Skip to content

Commit ab0d4f0

Browse files
agordn52Anthony Gordon
authored andcommitted
chore(release): bump version to 2.1.1
1 parent e3781aa commit ab0d4f0

4 files changed

Lines changed: 12 additions & 6 deletions

File tree

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
## [2.1.1] - 2026-04-26
2+
3+
### Documentation
4+
5+
* Documented the 2.1.0 copy-to-clipboard features in the README (Logs, Routes, and Storage tab sections)
6+
17
## [2.1.0] - 2026-04-26
28

39
### Added

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ Add the following to your `pubspec.yaml`:
2929

3030
```yaml
3131
dependencies:
32-
error_stack: ^2.1.0
32+
error_stack: ^2.1.1
3333
```
3434
3535
Or install via command line:
@@ -198,7 +198,7 @@ DevPanelStore.instance.completeApiRequest(
198198

199199
### Logs Tab
200200

201-
Console logs with filtering by severity level.
201+
Console logs with filtering by severity level. Tap the copy icon on any log entry to copy the full entry (level, timestamp, tag, message, and stack trace) to the clipboard.
202202

203203
```dart
204204
import 'package:error_stack/error_stack.dart';
@@ -221,7 +221,7 @@ DevPanelStore.instance.info(
221221

222222
### Routes Tab
223223

224-
Navigation history with route names, arguments, and actions.
224+
Navigation history with route names, arguments, and actions. Tap a route to open its details sheet, where you can copy the route name to the clipboard.
225225

226226
Route tracking is automatic when using `ErrorStackNavigatorObserver`:
227227

@@ -244,7 +244,7 @@ DevPanelStore.instance.trackRouteReplace('/home');
244244

245245
### Storage Tab
246246

247-
View all local storage data from both Secure Storage and Shared Preferences.
247+
View all local storage data from both Secure Storage and Shared Preferences. Tap an entry to open the edit modal, where you can copy the key or value to the clipboard or update the stored value.
248248

249249
---
250250

lib/widgets/error_stack_debug_widget.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -378,7 +378,7 @@ class _ErrorStackDebugWidget extends State<ErrorStackDebugWidget> {
378378
left: 0,
379379
right: 0,
380380
child: Text(
381-
"ErrorStack v2.1.0",
381+
"ErrorStack v2.1.1",
382382
style: TextStyle(
383383
color: _themeMode == 'light'
384384
? Colors.black54

pubspec.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
name: error_stack
22
description: "ErrorStack helps you swiftly deal with errors in your Flutter applications! Custom error handling UI and logging to keep you productive."
3-
version: 2.1.0
3+
version: 2.1.1
44
homepage: https://nylo.dev
55
repository: https://github.com/nylo-core/error-stack/tree/2.x
66
issue_tracker: https://github.com/nylo-core/error-stack/issues

0 commit comments

Comments
 (0)