From 3aee47f6cf76a74983ed73a28db809d82ff02358 Mon Sep 17 00:00:00 2001 From: Nathan Harris Date: Tue, 7 Jan 2025 20:52:49 -0600 Subject: [PATCH] Rename package name to be hyphenated to match idioms Motivation: Across the ecosystem it has become an idiom to have the Package name match the repository name. SwiftPM even assumes as such in several cases. The current name conflicts with this expected idiom. Modifications: - Rename: Package from `Currency` to `swift-currency` Result: The package should match expected ecosystem idioms for naming. --- Package.swift | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Package.swift b/Package.swift index 52310ad..1ca532d 100644 --- a/Package.swift +++ b/Package.swift @@ -4,7 +4,7 @@ import PackageDescription let package = Package( - name: "Currency", + name: "swift-currency", products: [ .library(name: "Currency", targets: ["Currency"]), ],