Skip to content

Commit e21933d

Browse files
authored
Merge pull request #19 from yaslab/release/1.3.1
Release 1.3.1
2 parents 7a88de9 + 3f78673 commit e21933d

File tree

4 files changed

+21
-13
lines changed

4 files changed

+21
-13
lines changed

.github/workflows/ci.yml

Lines changed: 17 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -3,22 +3,30 @@ name: CI
33
on:
44
push:
55
branches:
6-
- master
6+
- main
77
pull_request:
88
branches:
9-
- master
9+
- main
1010

1111
jobs:
12-
build:
12+
test-on-macos:
13+
runs-on: macos-latest
1314
strategy:
1415
matrix:
15-
os: [macos-latest, ubuntu-latest]
16-
17-
runs-on: ${{ matrix.os }}
18-
16+
xcode-version: ['16.0', '15.4', '15.2', '14.3.1']
17+
env:
18+
DEVELOPER_DIR: /Applications/Xcode_${{ matrix.xcode-version }}.app
19+
steps:
20+
- uses: actions/checkout@v4
21+
- name: Run swift build
22+
run: swift build
23+
- name: Run swift test
24+
run: swift test
25+
test-on-linux:
26+
runs-on: ubuntu-latest
1927
steps:
2028
- uses: actions/checkout@v4
21-
- name: Build
29+
- name: Run swift build
2230
run: swift build
23-
- name: Run tests
31+
- name: Run swift test
2432
run: swift test

.gitignore

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ playground.xcworkspace
7878
# *.xcodeproj
7979
# Xcode automatically generates this directory with a .xcworkspacedata file and xcuserdata
8080
# hence it is not needed unless you have added a package configuration file to your project
81-
# .swiftpm
81+
.swiftpm
8282

8383
.build/
8484

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ let package = Package(
7474
name: "MyPackage",
7575
dependencies: [
7676
// Add `ULID.swift` package here.
77-
.package(url: "https://github.com/yaslab/ULID.swift.git", from: "1.3.0")
77+
.package(url: "https://github.com/yaslab/ULID.swift.git", from: "1.3.1")
7878
],
7979
targets: [
8080
.executableTarget(
@@ -91,7 +91,7 @@ let package = Package(
9191
### CocoaPods
9292

9393
```
94-
pod 'ULID.swift', '~> 1.3.0'
94+
pod 'ULID.swift', '~> 1.3.1'
9595
```
9696

9797
## License

ULID.swift.podspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
Pod::Spec.new do |spec|
22
spec.name = 'ULID.swift'
3-
spec.version = '1.3.0'
3+
spec.version = '1.3.1'
44
spec.license = { :type => 'MIT' }
55
spec.homepage = 'https://github.com/yaslab/ULID.swift'
66
spec.authors = { 'Yasuhiro Hatta' => 'hatta.yasuhiro@gmail.com' }

0 commit comments

Comments
 (0)