Skip to content

Commit f0f840e

Browse files
author
Andrea Scuderi
committed
Decouple Breeze CLI from libraries
1 parent f5f320b commit f0f840e

File tree

98 files changed

+63
-2645
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

98 files changed

+63
-2645
lines changed

CONTRIBUTING.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ information to effectively respond to your bug report or contribution.
1111

1212
We welcome you to use the GitHub issue tracker to report bugs or suggest features.
1313

14-
When filing an issue, please check [existing open](https://github.com/swift-sprinter/breeze/issues), or [recently closed](https://github.com/swift-sprinter/breeze/issues?utf8=%E2%9C%93&q=is%3Aissue%20is%3Aclosed%20), issues to make sure somebody else hasn't already
14+
When filing an issue, please check [existing open](https://github.com/swift-serverless/breeze/issues), or [recently closed](https://github.com/swift-serverless/breeze/issues?utf8=%E2%9C%93&q=is%3Aissue%20is%3Aclosed%20), issues to make sure somebody else hasn't already
1515
reported the issue. Please try to include as much information as you can. Details like these are incredibly useful:
1616

1717
* A reproducible test case or series of steps
@@ -41,7 +41,7 @@ GitHub provides additional documents on [forking a repository](https://help.gith
4141

4242

4343
## Finding contributions to work on
44-
Looking at the existing issues is a great way to find something to contribute on. As our projects, by default, use the default GitHub issue labels ((enhancement/bug/duplicate/help wanted/invalid/question/wontfix), looking at any ['help wanted'](https://github.com/swift-sprinter/breeze/labels/help%20wanted) issues is a great place to start.
44+
Looking at the existing issues is a great way to find something to contribute on. As our projects, by default, use the default GitHub issue labels ((enhancement/bug/duplicate/help wanted/invalid/question/wontfix), looking at any ['help wanted'](https://github.com/swift-serverless/breeze/labels/help%20wanted) issues is a great place to start.
4545

4646

4747
## Code of Conduct
@@ -57,6 +57,6 @@ If the security issue is related to Swift notify [Apple Security](https://suppor
5757

5858
## Licensing
5959

60-
See the [LICENSE](https://github.com/swift-sprinter/breeze/blob/master/LICENSE.txt) file for our project's licensing. We will ask you to confirm the licensing of your contribution.
60+
See the [LICENSE](https://github.com/swift-serverless/breeze/blob/master/LICENSE.txt) file for our project's licensing. We will ask you to confirm the licensing of your contribution.
6161

6262
We may ask you to sign a [Contributor License Agreement (CLA)](http://en.wikipedia.org/wiki/Contributor_License_Agreement) for larger changes.

Docs/GenerateLambdaAPI.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,7 @@ let package = Package(
8686
.executable(name: "ItemAPI", targets: ["ItemAPI"]),
8787
],
8888
dependencies: [
89-
.package(url: "https://github.com/swift-sprinter/Breeze.git", from: "0.2.0"),
89+
.package(url: "https://github.com/swift-serverless/Breeze.git", from: "0.2.0"),
9090
],
9191
targets: [
9292
.executableTarget(

Examples/GitHubWebhook/BreezeGitHubWebHook/Package.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ let package = Package(
1313
],
1414
dependencies: [
1515
.package(url: "https://github.com/apple/swift-crypto.git", from: "1.0.0"),
16-
.package(url: "https://github.com/swift-sprinter/Breeze.git", from: "0.3.0")
16+
.package(url: "https://github.com/swift-serverless/BreezeLambdaWebHook.git", from: "0.4.0")
1717
],
1818
targets: [
1919
.executableTarget(

Examples/GitHubWebhook/BreezeGitHubWebHook/Sources/GitHubWebHook/GitHubSignatureValidator.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright 2023 (c) Andrea Scuderi - https://github.com/swift-sprinter
1+
// Copyright 2023 (c) Andrea Scuderi - https://github.com/swift-serverless
22
//
33
// Licensed under the Apache License, Version 2.0 (the "License");
44
// you may not use this file except in compliance with the License.

Examples/GitHubWebhook/BreezeGitHubWebHook/Sources/GitHubWebHook/GitHubWebHook.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright 2023 (c) Andrea Scuderi - https://github.com/swift-sprinter
1+
// Copyright 2023 (c) Andrea Scuderi - https://github.com/swift-serverless
22
//
33
// Licensed under the Apache License, Version 2.0 (the "License");
44
// you may not use this file except in compliance with the License.

Examples/GitHubWebhook/BreezeGitHubWebHook/Sources/GitHubWebHook/main.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright 2020 (c) Andrea Scuderi - https://github.com/swift-sprinter
1+
// Copyright 2020 (c) Andrea Scuderi - https://github.com/swift-serverless
22
//
33
// Licensed under the Apache License, Version 2.0 (the "License");
44
// you may not use this file except in compliance with the License.

Examples/GitHubWebhook/BreezeGitHubWebHook/Tests/GitHubWebHookTests/GitHubWebHookTests.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright 2020 (c) Andrea Scuderi - https://github.com/swift-sprinter
1+
// Copyright 2020 (c) Andrea Scuderi - https://github.com/swift-serverless
22
//
33
// Licensed under the Apache License, Version 2.0 (the "License");
44
// you may not use this file except in compliance with the License.

Examples/GitHubWebhook/Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Copyright 2023 (c) Andrea Scuderi - https://github.com/swift-sprinter
1+
# Copyright 2023 (c) Andrea Scuderi - https://github.com/swift-serverless
22

33
# Licensed under the Apache License, Version 2.0 (the "License");
44
# you may not use this file except in compliance with the License.

Examples/ItemAPI/BreezeItemAPI/Package.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ let package = Package(
1212
.executable(name: "ItemAPI", targets: ["ItemAPI"]),
1313
],
1414
dependencies: [
15-
.package(url: "https://github.com/swift-sprinter/Breeze.git", from: "0.2.0")
15+
.package(url: "https://github.com/swift-serverless/BreezeLambdaDynamoDBAPI.git", from: "0.4.0")
1616
],
1717
targets: [
1818
.executableTarget(

Examples/ItemAPI/BreezeItemAPI/Sources/ItemAPI/main.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright 2020 (c) Andrea Scuderi - https://github.com/swift-sprinter
1+
// Copyright 2020 (c) Andrea Scuderi - https://github.com/swift-serverless
22
//
33
// Licensed under the Apache License, Version 2.0 (the "License");
44
// you may not use this file except in compliance with the License.

0 commit comments

Comments
 (0)