Skip to content

Commit d302d8e

Browse files
author
Lonnie Gerol
committed
Updates package name and adjusts version number
1 parent 6c90122 commit d302d8e

File tree

2 files changed

+7
-7
lines changed

2 files changed

+7
-7
lines changed

GeoJSON.podspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99

1010
Pod::Spec.new do |s|
1111
s.name = "GeoJSON"
12-
s.version = "0.4.3"
12+
s.version = "0.4.0"
1313
s.summary = "A GeoJSON model for Swift."
1414
s.homepage = "https://github.com/bryx-inc/GeoJSON.swift"
1515
s.license = 'MIT'

Package.swift

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -4,13 +4,13 @@
44
import PackageDescription
55

66
let package = Package(
7-
name: "GeoJSON.swift",
7+
name: "GeoJSON",
88
platforms: [.iOS(.v8)],
99
products: [
1010
// Products define the executables and libraries a package produces, and make them visible to other packages.
1111
.library(
12-
name: "GeoJSON.swift",
13-
targets: ["GeoJSON.swift"]),
12+
name: "GeoJSON",
13+
targets: ["GeoJSON"]),
1414
],
1515
dependencies: [
1616
// Dependencies declare other packages that this package depends on.
@@ -20,11 +20,11 @@ let package = Package(
2020
// Targets are the basic building blocks of a package. A target can define a module or a test suite.
2121
// Targets can depend on other targets in this package, and on products in packages this package depends on.
2222
.target(
23-
name: "GeoJSON.swift",
23+
name: "GeoJSON",
2424
dependencies: []),
2525
.testTarget(
26-
name: "GeoJSON.swiftTests",
27-
dependencies: ["GeoJSON.swift"]),
26+
name: "GeoJSONTests",
27+
dependencies: ["GeoJSON"]),
2828
],
2929
swiftLanguageVersions: [
3030
.v5

0 commit comments

Comments
 (0)