Skip to content

Commit

Permalink
Bump github.com/apple/swift-async-algorithms from 0.1.0 to 1.0.0 (#13)
Browse files Browse the repository at this point in the history
* Bump github.com/apple/swift-async-algorithms from 0.1.0 to 1.0.0

Bumps [github.com/apple/swift-async-algorithms](https://github.com/apple/swift-async-algorithms) from 0.1.0 to 1.0.0.
- [Release notes](https://github.com/apple/swift-async-algorithms/releases)
- [Commits](apple/swift-async-algorithms@0.1.0...1.0.0)

---
updated-dependencies:
- dependency-name: github.com/apple/swift-async-algorithms
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <support@github.com>

* Use underscored method

---------

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Matt Gacy <matt@mgacy.com>
  • Loading branch information
dependabot[bot] and mgacy authored Jan 17, 2024
1 parent be2f4a3 commit d06d886
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions Package.resolved
Original file line number Diff line number Diff line change
Expand Up @@ -41,8 +41,8 @@
"kind" : "remoteSourceControl",
"location" : "https://github.com/apple/swift-async-algorithms",
"state" : {
"revision" : "9cfed92b026c524674ed869a4ff2dcfdeedf8a2a",
"version" : "0.1.0"
"revision" : "da4e36f86544cdf733a40d59b3a2267e3a7bbf36",
"version" : "1.0.0"
}
},
{
Expand Down
2 changes: 1 addition & 1 deletion Package.swift
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ let package = Package(
dependencies: [
.package(url: "https://github.com/ChimeHQ/GlobPattern.git", from: "0.1.0"),
.package(url: "https://github.com/apple/swift-argument-parser", from: "1.2.0"),
.package(url: "https://github.com/apple/swift-async-algorithms", from: "0.1.0"),
.package(url: "https://github.com/apple/swift-async-algorithms", from: "1.0.0"),
.package(url: "https://github.com/eonist/FileWatcher.git", from: "0.2.3"),
.package(url: "https://github.com/johnsundell/shellout.git", from: "2.3.0"),
.package(url: "https://github.com/jpsim/Yams.git", from: "5.0.4"),
Expand Down
2 changes: 1 addition & 1 deletion Sources/WatcherCore/WatcherCore.swift
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ extension WatcherCore {
do {
for try await event in EventStreamGenerator
.changes(on: paths)
.throttle(for: .seconds(throttleInterval)) {
._throttle(for: .seconds(throttleInterval)) {
await operation(event)
}
} catch {
Expand Down

0 comments on commit d06d886

Please sign in to comment.