Skip to content
This repository has been archived by the owner on Feb 28, 2023. It is now read-only.

Commit

Permalink
Rename project to MicroPinboard
Browse files Browse the repository at this point in the history
  • Loading branch information
otaviocc committed Feb 2, 2022
1 parent 92d1d52 commit 01b83cf
Show file tree
Hide file tree
Showing 19 changed files with 11 additions and 11 deletions.
12 changes: 6 additions & 6 deletions Package.swift
Original file line number Diff line number Diff line change
Expand Up @@ -4,14 +4,14 @@
import PackageDescription

let package = Package(
name: "PinboardKit",
name: "MicroPinboard",
platforms: [
.macOS(.v12), .iOS(.v13)
],
products: [
.library(
name: "PinboardKit",
targets: ["PinboardKit"]
name: "MicroPinboard",
targets: ["MicroPinboard"]
)
],
dependencies: [
Expand All @@ -22,12 +22,12 @@ let package = Package(
],
targets: [
.target(
name: "PinboardKit",
name: "MicroPinboard",
dependencies: ["MicroClient"]
),
.testTarget(
name: "PinboardKitTests",
dependencies: ["PinboardKit", "MicroClient"]
name: "MicroPinboardTests",
dependencies: ["MicroPinboard", "MicroClient"]
)
]
)
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# PinboardKit
# MicroPinboard

PinboardKit is a [Pinboard](https://pinboard.in) [API](https://pinboard.in/api) wrapper, written in Swift using async/await.
MicroPinboard is a [Pinboard](https://pinboard.in) [API](https://pinboard.in/api) wrapper, written in Swift using async/await.

```swift
public protocol PinboardAPIFactoryProtocol {
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import XCTest
import PinboardKit
import MicroPinboard

class PostsAPIFactoryTests: XCTestCase {

Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import XCTest
import PinboardKit
import MicroPinboard

class TagsAPIFactoryTests: XCTestCase {

Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import XCTest
import PinboardKit
import MicroPinboard

final class UpdateAPIFactoryTests: XCTestCase {

Expand Down

0 comments on commit 01b83cf

Please sign in to comment.