Skip to content

Commit 5f9c41e

Browse files
committed
Update documentation.
1 parent a7286bc commit 5f9c41e

File tree

3 files changed

+9
-5
lines changed

3 files changed

+9
-5
lines changed

CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,8 @@
11
# Changelog
22

3+
## 2.3.4 (2020-02-11)
4+
- Include iOS build target
5+
36
## 2.3.3 (2020-02-09)
47
- Made all numeric types support protocol `Codable`
58
- Migrated project to Xcode 11.3

Package.swift

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
// NumberKit
55
//
66
// Created by Matthias Zenger on 01/05/2017.
7-
// Copyright © 2015-2019 Matthias Zenger. All rights reserved.
7+
// Copyright © 2015-2020 Matthias Zenger. All rights reserved.
88
//
99
// Licensed under the Apache License, Version 2.0 (the "License");
1010
// you may not use this file except in compliance with the License.
@@ -25,10 +25,10 @@ let package = Package(
2525
name: "NumberKit",
2626
platforms: [
2727
.macOS(.v10_12),
28-
.iOS(.v11)
28+
.iOS(.v11),
2929
],
3030
products: [
31-
.library(name: "NumberKit", targets: ["NumberKit"])
31+
.library(name: "NumberKit", targets: ["NumberKit"]),
3232
],
3333
dependencies: [
3434
],

README.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# Swift NumberKit
22

33
<p>
4-
<a href="https://developer.apple.com/osx/"><img src="https://img.shields.io/badge/Platform-macOS-blue.svg?style=flat" alt="Platform: macOS" /></a>
4+
<a href="https://developer.apple.com/osx/"><img src="https://img.shields.io/badge/Platform-macOS,%20iOS-blue.svg?style=flat" alt="Platform: macOS, iOS" /></a>
55
<a href="https://developer.apple.com/swift/"><img src="https://img.shields.io/badge/Language-Swift%205.1-green.svg?style=flat" alt="Language: Swift 5.1" /></a>
66
<a href="https://developer.apple.com/xcode/"><img src="https://img.shields.io/badge/IDE-Xcode%2011.3-orange.svg?style=flat" alt="IDE: Xcode 11.3" /></a>
77
<a href="https://raw.githubusercontent.com/objecthub/swift-lispkit/master/LICENSE"><img src="http://img.shields.io/badge/License-Apache-lightgrey.svg?style=flat" alt="License: Apache" /></a>
@@ -11,7 +11,8 @@
1111
## Overview
1212

1313
This is a framework implementing advanced numeric data types for the Swift programming
14-
language. Currently, the framework provides three new numeric types, each represented as a struct:
14+
language on macOS and iOS. Currently, the framework provides three new numeric types,
15+
each represented as a struct:
1516

1617
1. `BigInt`: arbitrary-precision signed integers
1718
2. `Rational`: signed rational numbers

0 commit comments

Comments
 (0)