Skip to content

Commit 7c9d254

Browse files
Rename
1 parent 0b66db0 commit 7c9d254

File tree

7 files changed

+24
-14
lines changed

7 files changed

+24
-14
lines changed

Package.swift

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -2,17 +2,17 @@
22
import PackageDescription
33

44
let package = Package(
5-
name: "LightTableDelta",
5+
name: "swift-delta",
66
products: [
77
.library(
8-
name: "LightTableDelta",
9-
targets: ["LightTableDelta"]),
8+
name: "Delta",
9+
targets: ["Delta"]),
1010
],
1111
targets: [
1212
.target(
13-
name: "LightTableDelta"),
13+
name: "Delta"),
1414
.testTarget(
15-
name: "LightTableDeltaTests",
16-
dependencies: ["LightTableDelta"]),
15+
name: "DeltaTests",
16+
dependencies: ["Delta"]),
1717
]
1818
)

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
# LightTableDelta
1+
# Swift Delta
22

3-
A Swift package for a type `Delta<Element>` with three cases:
3+
Swift Delta is a package for a type `Delta<Element>` with three cases:
44

55
- `source(Element)`
66
- `target(Element)`

Sources/LightTableDelta/Delta.swift renamed to Sources/Delta/Delta.swift

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,4 @@
11
//
2-
// Delta.swift
3-
// LightTableDelta
4-
//
52
// Copyright 2024 Florian Pircher
63
//
74
// Licensed under the Apache License, Version 2.0 (the "License");

Sources/LightTableDelta/DeltaSide.swift renamed to Sources/Delta/DeltaSide.swift

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,4 @@
11
//
2-
// DeltaSide.swift
3-
// LightTableDelta
4-
//
52
// Copyright 2024 Florian Pircher
63
//
74
// Licensed under the Apache License, Version 2.0 (the "License");

Tests/LightTableDeltaTests/LightTableDeltaTests.swift renamed to Tests/DeltaTests/DeltaTests.swift

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,19 @@
1+
//
2+
// Copyright 2024 Florian Pircher
3+
//
4+
// Licensed under the Apache License, Version 2.0 (the "License");
5+
// you may not use this file except in compliance with the License.
6+
// You may obtain a copy of the License at
7+
//
8+
// https://www.apache.org/licenses/LICENSE-2.0
9+
//
10+
// Unless required by applicable law or agreed to in writing, software
11+
// distributed under the License is distributed on an "AS IS" BASIS,
12+
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13+
// See the License for the specific language governing permissions and
14+
// limitations under the License.
15+
//
16+
117
import Testing
218
import Foundation
319
import LightTableDelta

0 commit comments

Comments
 (0)