File tree Expand file tree Collapse file tree 3 files changed +9
-5
lines changed Expand file tree Collapse file tree 3 files changed +9
-5
lines changed Original file line number Diff line number Diff line change 1
1
# Changelog
2
2
3
+ ## 2.3.4 (2020-02-11)
4
+ - Include iOS build target
5
+
3
6
## 2.3.3 (2020-02-09)
4
7
- Made all numeric types support protocol ` Codable `
5
8
- Migrated project to Xcode 11.3
Original file line number Diff line number Diff line change 4
4
// NumberKit
5
5
//
6
6
// 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.
8
8
//
9
9
// Licensed under the Apache License, Version 2.0 (the "License");
10
10
// you may not use this file except in compliance with the License.
@@ -25,10 +25,10 @@ let package = Package(
25
25
name: " NumberKit " ,
26
26
platforms: [
27
27
. macOS( . v10_12) ,
28
- . iOS( . v11)
28
+ . iOS( . v11) ,
29
29
] ,
30
30
products: [
31
- . library( name: " NumberKit " , targets: [ " NumberKit " ] )
31
+ . library( name: " NumberKit " , targets: [ " NumberKit " ] ) ,
32
32
] ,
33
33
dependencies: [
34
34
] ,
Original file line number Diff line number Diff line change 1
1
# Swift NumberKit
2
2
3
3
<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 >
5
5
<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 >
6
6
<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 >
7
7
<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
11
## Overview
12
12
13
13
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:
15
16
16
17
1 . ` BigInt ` : arbitrary-precision signed integers
17
18
2 . ` Rational ` : signed rational numbers
You can’t perform that action at this time.
0 commit comments