Skip to content

Commit fd82b65

Browse files
committed
Create release/1.1 branch to prepare for tag.
This is a cut of main with IntegerUtilities removed; I plan to tag 1.1 with non-integer feature work from main, and 1.2 will be the first tag with IntegerUtilities.
1 parent 6356eb3 commit fd82b65

22 files changed

+1
-2867
lines changed

Package.swift

Lines changed: 1 addition & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -31,15 +31,9 @@ let package = Package(
3131
exclude: excludedFilenames
3232
),
3333

34-
.target(
35-
name: "IntegerUtilities",
36-
dependencies: [],
37-
exclude: excludedFilenames
38-
),
39-
4034
.target(
4135
name: "Numerics",
42-
dependencies: ["ComplexModule", "IntegerUtilities", "RealModule"],
36+
dependencies: ["ComplexModule", "RealModule"],
4337
exclude: excludedFilenames
4438
),
4539

@@ -71,12 +65,6 @@ let package = Package(
7165
exclude: ["CMakeLists.txt"]
7266
),
7367

74-
.testTarget(
75-
name: "IntegerUtilitiesTests",
76-
dependencies: ["IntegerUtilities", "_TestSupport"],
77-
exclude: ["CMakeLists.txt"]
78-
),
79-
8068
.testTarget(
8169
name: "RealTests",
8270
dependencies: ["_TestSupport"],

README.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -105,7 +105,6 @@ Questions about how to use Swift Numerics modules, or issues that are not clearl
105105

106106
1. [`RealModule`](Sources/RealModule/README.md)
107107
2. [`ComplexModule`](Sources/ComplexModule/README.md)
108-
3. [`IntegerUtilities`](Sources/IntegerUtilities/README.md) (on main only, not yet present in a released tag)
109108

110109
## Future expansion
111110

Sources/CMakeLists.txt

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,6 @@ See https://swift.org/LICENSE.txt for license information
99

1010
add_subdirectory(_NumericsShims)
1111
add_subdirectory(ComplexModule)
12-
add_subdirectory(IntegerUtilities)
1312
add_subdirectory(Numerics)
1413
add_subdirectory(RealModule)
1514
if(BUILD_TESTING)

Sources/ComplexModule/Complex.swift

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,6 @@ import RealModule
1313

1414
/// A complex number represented by real and imaginary parts.
1515
///
16-
/// TODO: introductory text on complex numbers
17-
///
1816
/// Implementation notes:
1917
///
2018
/// This type does not provide heterogeneous real/complex arithmetic,

Sources/IntegerUtilities/CMakeLists.txt

Lines changed: 0 additions & 21 deletions
This file was deleted.

Sources/IntegerUtilities/DivideWithRounding.swift

Lines changed: 0 additions & 322 deletions
This file was deleted.

0 commit comments

Comments
 (0)