-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
commit e408429 Author: Garrett <gsharp.impact@gmail.com> Date: Sat Jun 1 14:44:55 2024 -0500 update changelogs commit 370f429 Author: Garrett <gsharp.impact@gmail.com> Date: Sat Jun 1 14:44:12 2024 -0500 update version commit 11d257c Author: Garrett <gsharp.impact@gmail.com> Date: Sat Jun 1 14:39:26 2024 -0500 upgrade deps & fix linking commit 8aff28f Author: Garrett <gsharp.impact@gmail.com> Date: Fri Apr 26 00:54:03 2024 -0500 fix spacing commit 3ad9227 Merge: 275e7ed f3721a9 Author: Garrett <gsharp.impact@gmail.com> Date: Fri Apr 26 00:53:28 2024 -0500 Merge branch 'main' into dev commit 275e7ed Author: Garrett <gsharp.impact@gmail.com> Date: Thu Apr 25 11:40:54 2024 -0500 update scripts commit 32f26a6 Author: Garrett <gsharp.impact@gmail.com> Date: Sun Mar 31 19:59:04 2024 -0500 Fix name ref commit f150781 Author: Garrett <gsharp.impact@gmail.com> Date: Sun Mar 31 02:57:30 2024 -0500 run once when benchmarking commit 5c23d5e Author: Garrett <gsharp.impact@gmail.com> Date: Sun Mar 31 02:40:12 2024 -0500 feat: allow disabling deep copying items in snapshot commit c2a2e83 Author: Garrett <gsharp.impact@gmail.com> Date: Sun Mar 31 01:47:53 2024 -0500 update example to call dispose commit 1b2c416 Author: Garrett <gsharp.impact@gmail.com> Date: Sun Mar 31 01:34:47 2024 -0500 defaults - assert parallel > 0 - change default retries to 0 commit 81d27e3 Author: Garrett <gsharp.impact@gmail.com> Date: Sat Mar 30 23:33:36 2024 -0500 changelog
- Loading branch information
Showing
11 changed files
with
78 additions
and
37 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,7 @@ | ||
## 0.9.0 | ||
|
||
* Fix dependency constraints | ||
|
||
## 0.0.4 | ||
|
||
* Updated example project | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,4 +4,4 @@ publish_to: none | |
environment: | ||
sdk: ">=3.0.0 <4.0.0" | ||
dev_dependencies: | ||
melos: ^5.2.2 | ||
melos: ^6.0.0 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -6,4 +6,5 @@ | |
# https://dart.dev/guides/libraries/private-files#pubspeclock. | ||
pubspec.lock | ||
|
||
.idea | ||
.idea | ||
build/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,15 +1,15 @@ | ||
name: queue_it | ||
description: QueueIt makes dealing with queues easy. You can add multiple listeners, specify the number of concurrent items to process, view queue progress and more. | ||
version: 0.0.4 | ||
version: 0.9.0 | ||
repository: https://github.com/sharpsan/queue_it_library | ||
|
||
environment: | ||
sdk: ^3.0.2 | ||
|
||
dependencies: | ||
uuid: ^4.3.3 | ||
uuid: ^4.4.0 | ||
|
||
dev_dependencies: | ||
benchmark_harness: ^2.2.2 | ||
lints: ^3.0.0 | ||
test: ^1.24.0 | ||
lints: ^4.0.0 | ||
test: ^1.25.5 |