Skip to content

Commit

Permalink
Rename package name to be hyphenated to match idioms
Browse files Browse the repository at this point in the history
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.
  • Loading branch information
Mordil committed Jan 8, 2025
1 parent 16a88d6 commit 3aee47f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Package.swift
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
import PackageDescription

let package = Package(
name: "Currency",
name: "swift-currency",
products: [
.library(name: "Currency", targets: ["Currency"]),
],
Expand Down

0 comments on commit 3aee47f

Please sign in to comment.