Skip to content

Commit 3ef9fee

Browse files
committed
Update README
1 parent 4d863db commit 3ef9fee

File tree

1 file changed

+6
-23
lines changed

1 file changed

+6
-23
lines changed

README.md

Lines changed: 6 additions & 23 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,9 @@
11
# Swift Assimp
22

3+
[![macOS](https://github.com/ctreffs/SwiftAssimp/actions/workflows/ci-macos.yml/badge.svg)](https://github.com/ctreffs/SwiftAssimp/actions/workflows/ci-macos.yml)
4+
[![Linux](https://github.com/ctreffs/SwiftAssimp/actions/workflows/ci-linux.yml/badge.svg)](https://github.com/ctreffs/SwiftAssimp/actions/workflows/ci-linux.yml)
35
[![license](https://img.shields.io/badge/license-BSD3-brightgreen.svg)](LICENSE)
4-
[![swift version](https://img.shields.io/badge/swift-5.1+-brightgreen.svg)](https://swift.org/download)
6+
[![swift version](https://img.shields.io/badge/swift-5.3+-brightgreen.svg)](https://swift.org/download)
57
[![platforms](https://img.shields.io/badge/platforms-%20macOS%20-brightgreen.svg)](#)
68
[![platforms](https://img.shields.io/badge/platforms-linux-brightgreen.svg)](#)
79

@@ -25,33 +27,14 @@ These instructions will get your copy of the project up and running on your loca
2527

2628
### 💻 Installing
2729

28-
Swift Assimp is available for all platforms that support [Swift 5.1](https://swift.org/) and higher and the [Swift Package Manager (SPM)](https://github.com/apple/swift-package-manager).
30+
Swift Assimp is available for all platforms that support [Swift 5.3](https://swift.org/) and higher and the [Swift Package Manager (SPM)](https://github.com/apple/swift-package-manager).
2931

3032
Extend your `Package.swift` file with the following lines or use it to create a new project.
3133

32-
For package manifests using the Swift 5.1 toolchain use:
34+
For package manifests using the Swift 5.3+ toolchain use:
3335

3436
```swift
35-
// swift-tools-version:5.1
36-
import PackageDescription
37-
38-
let package = Package(
39-
name: "YourPackageName",
40-
dependencies: [
41-
.package(url: "https://github.com/ctreffs/SwiftAssimp.git", from: "1.3.1")
42-
],
43-
targets: [
44-
.target(
45-
name: "YourTargetName",
46-
dependencies: ["Assimp"])
47-
]
48-
)
49-
50-
```
51-
or for package manifests using the Swift 5.2+ toolchain use:
52-
53-
```swift
54-
// swift-tools-version:5.2
37+
// swift-tools-version:5.3
5538
import PackageDescription
5639

5740
let package = Package(

0 commit comments

Comments
 (0)