Skip to content

Commit

Permalink
visionOS support (#6)
Browse files Browse the repository at this point in the history
* `visionOS` support

* Update `.swiftlint.yml`

* Update `CHANGELOG.md`
  • Loading branch information
nik3212 committed Nov 6, 2023
1 parent 0442fc3 commit c019102
Show file tree
Hide file tree
Showing 4 changed files with 34 additions and 1 deletion.
1 change: 1 addition & 0 deletions .swiftlint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@ excluded:
- Tests
- Package.swift
- .build
- [email protected]

# Rules

Expand Down
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,9 @@ All notable changes to this project will be documented in this file.
## [Unreleased]

## Added
- Add `visionOS` support
- Added in Pull Request [#6](https://github.com/space-code/atomic/pull/6).

- Updating pre-commit hook rules
- Added in Pull Request [#5](https://github.com/space-code/atomic/pull/5).

Expand Down
3 changes: 2 additions & 1 deletion Package.swift
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// swift-tools-version: 5.5
// swift-tools-version: 5.9
// The swift-tools-version declares the minimum version of Swift required to build this package.

import PackageDescription
Expand All @@ -10,6 +10,7 @@ let package = Package(
.iOS(.v13),
.watchOS(.v6),
.tvOS(.v11),
.visionOS(.v1),
],
products: [
.library(name: "Atomic", targets: ["Atomic"]),
Expand Down
28 changes: 28 additions & 0 deletions [email protected]
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
// swift-tools-version: 5.7
// The swift-tools-version declares the minimum version of Swift required to build this package.

import PackageDescription

let package = Package(
name: "Atomic",
platforms: [
.macOS(.v10_15),
.iOS(.v13),
.watchOS(.v6),
.tvOS(.v11),
],
products: [
.library(name: "Atomic", targets: ["Atomic"]),
],
dependencies: [],
targets: [
.target(
name: "Atomic",
dependencies: []
),
.testTarget(
name: "AtomicTests",
dependencies: ["Atomic"]
),
]
)

0 comments on commit c019102

Please sign in to comment.