Skip to content

Commit

Permalink
Update dependencies.
Browse files Browse the repository at this point in the history
Add github worklow.
  • Loading branch information
hishma committed Jun 13, 2022
1 parent a067deb commit 153c334
Show file tree
Hide file tree
Showing 4 changed files with 33 additions and 10 deletions.
19 changes: 19 additions & 0 deletions .github/workflows/build+test.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
name: Build & Test

on:
push:
branches: [ develop ]
pull_request:
branches: [ develop ]

jobs:
build:

runs-on: macos-latest

steps:
- uses: actions/checkout@v3
- name: Build
run: swift build --disable-sandbox -v
- name: Run tests
run: swift test -v
12 changes: 8 additions & 4 deletions CHANGELOG.MD → CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
# Change Log

## 1.0.0 2022-06-13

## [1.0] - 2022-06-13

### Changes

- Update dependencies.

## 0.1.2

### Improvements
Expand All @@ -11,7 +19,3 @@
## 0.1.1

Initial release




8 changes: 4 additions & 4 deletions Package.resolved
Original file line number Diff line number Diff line change
Expand Up @@ -15,17 +15,17 @@
"repositoryURL": "https://github.com/salishseasoftware/Stringy.git",
"state": {
"branch": null,
"revision": "c02083f5074b600614db85007897047ab68b8e54",
"version": "0.1.0"
"revision": "17254b8e1478f3d3032fbad8abf42f8fa52d148d",
"version": "1.0.0"
}
},
{
"package": "swift-argument-parser",
"repositoryURL": "https://github.com/apple/swift-argument-parser",
"state": {
"branch": null,
"revision": "69ddee8c323ed468539e3b05e8c01e3d5a37bf6a",
"version": "0.4.0"
"revision": "f3c9084a71ef4376f2fabbdf1d3d90a49f1fabdb",
"version": "1.1.2"
}
}
]
Expand Down
4 changes: 2 additions & 2 deletions Package.swift
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,9 @@ let package = Package(
platforms: [.macOS(.v11)],
products: [.executable(name: "lorem", targets: ["lorem"])],
dependencies: [
.package(url: "https://github.com/apple/swift-argument-parser", from: "0.3.0"),
.package(url: "https://github.com/apple/swift-argument-parser", from: "1.0.0"),
.package(url: "https://github.com/lukaskubanek/LoremSwiftum.git", from: "2.2.1"),
.package(url: "https://github.com/salishseasoftware/Stringy.git", from: "0.1.0"),
.package(url: "https://github.com/salishseasoftware/Stringy.git", from: "1.0.0"),
],
targets: [
// Targets are the basic building blocks of a package. A target can define a module or a test suite.
Expand Down

0 comments on commit 153c334

Please sign in to comment.