Skip to content

Commit

Permalink
Update documentation.
Browse files Browse the repository at this point in the history
  • Loading branch information
objecthub committed Feb 10, 2020
1 parent a7286bc commit 5f9c41e
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 5 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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
Expand Down
6 changes: 3 additions & 3 deletions Package.swift
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand All @@ -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: [
],
Expand Down
5 changes: 3 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# Swift NumberKit

<p>
<a href="https://developer.apple.com/osx/"><img src="https://img.shields.io/badge/Platform-macOS-blue.svg?style=flat" alt="Platform: macOS" /></a>
<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>
<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>
<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>
<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>
Expand All @@ -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
Expand Down

0 comments on commit 5f9c41e

Please sign in to comment.