Skip to content

Commit c0c1055

Browse files
Update README and Package.swift
1 parent 7b8f387 commit c0c1055

File tree

2 files changed

+12
-3
lines changed

2 files changed

+12
-3
lines changed

Package.swift

+7-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,13 @@
33
import PackageDescription
44

55
let package = Package(
6-
name: "NumberParser",
6+
name: "NumberParser",
7+
platforms: [
8+
.macOS(.v10_10),
9+
.iOS(.v9),
10+
.tvOS(.v9),
11+
.watchOS(.v2)
12+
],
713
products: [
814
.library(name: "NumberParser", targets: ["NumberParser"]),
915
],

README.md

+5-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,9 @@
1-
# NumberParser
1+
![Build Status](https://github.com/daltonclaybrook/NumberParser/actions/workflows/swift.yml/badge.svg)
2+
[![codecov](https://codecov.io/gh/daltonclaybrook/NumberParser/branch/main/graph/badge.svg)](https://codecov.io/gh/daltonclaybrook/NumberParser)
3+
![Platforms](https://img.shields.io/badge/platforms-macOS%20%7C%20iOS%20%7C%20tvOS%20%7C%20watchOS-lightgrey)
4+
[![License](https://img.shields.io/badge/license-MIT-blue)](https://github.com/daltonclaybrook/NumberParser/blob/main/LICENSE.md)
25

3-
A utility used to parse number strings, e.g. "eight thousand four hundred seventy-three"
6+
**NumberParser** is a Swift package used to parse number strings, e.g. "eight thousand four hundred seventy-three"
47

58
## Usage
69

0 commit comments

Comments
 (0)