Skip to content

Commit

Permalink
Merge pull request #19 from yaslab/release/1.3.1
Browse files Browse the repository at this point in the history
Release 1.3.1
  • Loading branch information
yaslab authored Aug 11, 2024
2 parents 7a88de9 + 3f78673 commit e21933d
Show file tree
Hide file tree
Showing 4 changed files with 21 additions and 13 deletions.
26 changes: 17 additions & 9 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,22 +3,30 @@ name: CI
on:
push:
branches:
- master
- main
pull_request:
branches:
- master
- main

jobs:
build:
test-on-macos:
runs-on: macos-latest
strategy:
matrix:
os: [macos-latest, ubuntu-latest]

runs-on: ${{ matrix.os }}

xcode-version: ['16.0', '15.4', '15.2', '14.3.1']
env:
DEVELOPER_DIR: /Applications/Xcode_${{ matrix.xcode-version }}.app
steps:
- uses: actions/checkout@v4
- name: Run swift build
run: swift build
- name: Run swift test
run: swift test
test-on-linux:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Build
- name: Run swift build
run: swift build
- name: Run tests
- name: Run swift test
run: swift test
2 changes: 1 addition & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ playground.xcworkspace
# *.xcodeproj
# Xcode automatically generates this directory with a .xcworkspacedata file and xcuserdata
# hence it is not needed unless you have added a package configuration file to your project
# .swiftpm
.swiftpm

.build/

Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ let package = Package(
name: "MyPackage",
dependencies: [
// Add `ULID.swift` package here.
.package(url: "https://github.com/yaslab/ULID.swift.git", from: "1.3.0")
.package(url: "https://github.com/yaslab/ULID.swift.git", from: "1.3.1")
],
targets: [
.executableTarget(
Expand All @@ -91,7 +91,7 @@ let package = Package(
### CocoaPods

```
pod 'ULID.swift', '~> 1.3.0'
pod 'ULID.swift', '~> 1.3.1'
```

## License
Expand Down
2 changes: 1 addition & 1 deletion ULID.swift.podspec
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Pod::Spec.new do |spec|
spec.name = 'ULID.swift'
spec.version = '1.3.0'
spec.version = '1.3.1'
spec.license = { :type => 'MIT' }
spec.homepage = 'https://github.com/yaslab/ULID.swift'
spec.authors = { 'Yasuhiro Hatta' => '[email protected]' }
Expand Down

0 comments on commit e21933d

Please sign in to comment.