Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Docc #22

Merged
merged 3 commits into from
Dec 17, 2023
Merged

Docc #22

Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/docc.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ jobs:
generate-docs:
runs-on: macos-latest
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
- name: generate-documentation
# https://apple.github.io/swift-docc-plugin/documentation/swiftdoccplugin/generating-documentation-for-hosting-online/
run: >
Expand Down
2 changes: 1 addition & 1 deletion AccelerateArray.podspec
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ Pod::Spec.new do |s|
#

s.name = "AccelerateArray"
s.version = "0.4.0"
s.version = "0.5.0"
s.summary = "Swift Array Extensions for the Apple Accelerate Framework"

# This description is used to generate tags and improve search results.
Expand Down
14 changes: 10 additions & 4 deletions Package.swift
Original file line number Diff line number Diff line change
Expand Up @@ -11,10 +11,16 @@ let package = Package(
name: "AccelerateArray",
targets: ["AccelerateArray"]),
],
dependencies: [
// Dependencies declare other packages that this package depends on.
// .package(url: /* package url */, from: "1.0.0"),
],
dependencies: {
// https://apple.github.io/swift-docc-plugin/documentation/swiftdoccplugin/
var deps: [PackageDescription.Package.Dependency] = []
#if swift(>=5.6.0)
deps.append(
.package(url: "https://github.com/apple/swift-docc-plugin", from: "1.3.0")
)
#endif
return deps
}(),
targets: [
// Targets are the basic building blocks of a package. A target can define a module or a test suite.
// Targets can depend on other targets in this package, and on products in packages which this package depends
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ additional types, which can be easily built on top of this package.
```swift
let package = Package(
dependencies: [
.package(url: "https://github.com/dastrobu/AccelerateArray.git", from: "0.4.0"),
.package(url: "https://github.com/dastrobu/AccelerateArray.git", from: "0.5.0"),
]
)
```
Expand Down
98 changes: 0 additions & 98 deletions docs/Enums.html

This file was deleted.

157 changes: 0 additions & 157 deletions docs/Enums/LapackError.html

This file was deleted.

Loading