Skip to content

Commit

Permalink
CHANGE used xcode version to 15.2, used swift version to 5.9
Browse files Browse the repository at this point in the history
  • Loading branch information
mflknr committed Feb 3, 2024
1 parent 21508ce commit 8b63259
Show file tree
Hide file tree
Showing 12 changed files with 29 additions and 762 deletions.
2 changes: 1 addition & 1 deletion .jazzy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ skip_undocumented: true
hide_documentation_coverage: false
theme: apple
output: docs/
swift_version: 5.3.2
swift_version: 5.9.2
clean: true
min_acl: public
xcodebuild_arguments:
Expand Down
15 changes: 15 additions & 0 deletions .vscode/launch.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
{
"configurations": [
{
"type": "lldb",
"request": "launch",
"name": "Test SwiftVersionCompare",
"program": "/Applications/Xcode.app/Contents/Developer/usr/bin/xctest",
"args": [
".build/debug/SwiftVersionComparePackageTests.xctest"
],
"cwd": "${workspaceFolder:SwiftVersionCompare}",
"preLaunchTask": "swift: Build All"
}
]
}
10 changes: 10 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,16 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [1.2.0] - 2024-02-03

### Changed

- `swift-tools-version` to `5.9.2` for the package manifest and tools

### Removed

- generated .xcodeproj file

## [1.1.0] - 2021-10-02

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

import PackageDescription
Expand Down
4 changes: 2 additions & 2 deletions SwiftVersionCompare.podspec
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Pod::Spec.new do |s|
s.name = 'SwiftVersionCompare'
s.version = '1.1.0'
s.version = '1.2.0'
s.summary = 'Create and compare semantic versions in swift.'
s.homepage = 'https://github.com/mflknr/SwiftVersionCompare'
s.license = { :type => 'MIT', :file => 'LICENSE' }
Expand All @@ -14,5 +14,5 @@ Pod::Spec.new do |s|
s.watchos.deployment_target = '7.0'
s.tvos.deployment_target = '13.0'

s.swift_versions = ['5.3', '5.4', '5.5']
s.swift_versions = ['5.3', '5.4', '5.5', '5.6', '5.7', '5.8', '5.9']
end
26 changes: 0 additions & 26 deletions SwiftVersionCompare.xcodeproj/SwiftVersionCompareTests_Info.plist

This file was deleted.

26 changes: 0 additions & 26 deletions SwiftVersionCompare.xcodeproj/SwiftVersionCompare_Info.plist

This file was deleted.

Loading

0 comments on commit 8b63259

Please sign in to comment.