From 5f9c41eb20777801a0d7ecb5bafe83e5f490a42a Mon Sep 17 00:00:00 2001 From: Matthias Zenger Date: Tue, 11 Feb 2020 00:15:05 +0100 Subject: [PATCH] Update documentation. --- CHANGELOG.md | 3 +++ Package.swift | 6 +++--- README.md | 5 +++-- 3 files changed, 9 insertions(+), 5 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 5311d8d..2db3c5a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,8 @@ # Changelog +## 2.3.4 (2020-02-11) +- Include iOS build target + ## 2.3.3 (2020-02-09) - Made all numeric types support protocol `Codable` - Migrated project to Xcode 11.3 diff --git a/Package.swift b/Package.swift index 80314db..82b78a3 100644 --- a/Package.swift +++ b/Package.swift @@ -4,7 +4,7 @@ // NumberKit // // Created by Matthias Zenger on 01/05/2017. -// Copyright © 2015-2019 Matthias Zenger. All rights reserved. +// Copyright © 2015-2020 Matthias Zenger. All rights reserved. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. @@ -25,10 +25,10 @@ let package = Package( name: "NumberKit", platforms: [ .macOS(.v10_12), - .iOS(.v11) + .iOS(.v11), ], products: [ - .library(name: "NumberKit", targets: ["NumberKit"]) + .library(name: "NumberKit", targets: ["NumberKit"]), ], dependencies: [ ], diff --git a/README.md b/README.md index 37d9156..05c0af7 100644 --- a/README.md +++ b/README.md @@ -1,7 +1,7 @@ # Swift NumberKit

-Platform: macOS +Platform: macOS, iOS Language: Swift 5.1 IDE: Xcode 11.3 License: Apache @@ -11,7 +11,8 @@ ## Overview This is a framework implementing advanced numeric data types for the Swift programming -language. Currently, the framework provides three new numeric types, each represented as a struct: +language on macOS and iOS. Currently, the framework provides three new numeric types, +each represented as a struct: 1. `BigInt`: arbitrary-precision signed integers 2. `Rational`: signed rational numbers