Skip to content

Commit

Permalink
Update README and Package.swift
Browse files Browse the repository at this point in the history
  • Loading branch information
daltonclaybrook committed Dec 25, 2021
1 parent 7b8f387 commit c0c1055
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 3 deletions.
8 changes: 7 additions & 1 deletion Package.swift
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,13 @@
import PackageDescription

let package = Package(
name: "NumberParser",
name: "NumberParser",
platforms: [
.macOS(.v10_10),
.iOS(.v9),
.tvOS(.v9),
.watchOS(.v2)
],
products: [
.library(name: "NumberParser", targets: ["NumberParser"]),
],
Expand Down
7 changes: 5 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,9 @@
# NumberParser
![Build Status](https://github.com/daltonclaybrook/NumberParser/actions/workflows/swift.yml/badge.svg)
[![codecov](https://codecov.io/gh/daltonclaybrook/NumberParser/branch/main/graph/badge.svg)](https://codecov.io/gh/daltonclaybrook/NumberParser)
![Platforms](https://img.shields.io/badge/platforms-macOS%20%7C%20iOS%20%7C%20tvOS%20%7C%20watchOS-lightgrey)
[![License](https://img.shields.io/badge/license-MIT-blue)](https://github.com/daltonclaybrook/NumberParser/blob/main/LICENSE.md)

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

## Usage

Expand Down

0 comments on commit c0c1055

Please sign in to comment.