Skip to content

Commit

Permalink
Merge branch 'release/0.0.3'
Browse files Browse the repository at this point in the history
  • Loading branch information
Blackjacx committed Nov 19, 2020
2 parents dddf940 + 5981f42 commit c654cdb
Show file tree
Hide file tree
Showing 42 changed files with 1,657 additions and 226 deletions.
21 changes: 21 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
name: Test

on: [push]

jobs:
build:
strategy:
fail-fast: false
matrix:
os: [macos-latest, ubuntu-latest]

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

steps:
- uses: actions/checkout@v2
- name: Build
run: |
swift --version
swift build -v --enable-test-discovery
- name: Test
run: swift test -v --enable-test-discovery --parallel
99 changes: 94 additions & 5 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,6 +1,95 @@
.DS_Store
/.build
/Packages
/*.xcodeproj
# Xcode
#
# gitignore contributors: remember to update Global/Xcode.gitignore, Objective-C.gitignore & Swift.gitignore

# macos
**/.DS_Store
**/.env

## CI
codesigndoc_exports

# Carthage framework bundle - created during release process
*.framework.zip
# Fastlane config script is downloaded
fastlane/Fastfile
# Fastlane plugin config is downloaded
fastlane/Pluginfile
# Mint dependencies file which is downloaded
Mintfile
# Swiftlint config file which is downloaded
.swiftlint.yml
# Danger config file which is downloaded
Dangerfile
# Ruby gems config file which is downloaded
Gemfile
# Bundler configuration which is bootstrapped
.bundle
# Bundler vendor information which is bootstrapped
vendor

## Build generated
build/
DerivedData/

## Various settings
*.pbxuser
!default.pbxuser
*.mode1v3
!default.mode1v3
*.mode2v3
!default.mode2v3
*.perspectivev3
!default.perspectivev3
xcuserdata/
.swiftpm

## Other
*.moved-aside
*.xccheckout
*.xcscmblueprint

## Obj-C/Swift specific
*.hmap
*.ipa
*.dSYM.zip
*.dSYM

## Playgrounds
timeline.xctimeline
playground.xcworkspace

# CocoaPods
#
# We recommend against adding the Pods directory to your .gitignore. However
# you should judge for yourself, the pros and cons are mentioned at:
# https://guides.cocoapods.org/using/using-cocoapods.html#should-i-check-the-pods-directory-into-source-control
#
Pods/

# Carthage
#
# Add this line if you want to avoid checking in source code from Carthage dependencies.
# Carthage/Checkouts
Carthage/Build

# Swift Package Manager
#
# Add this line if you want to avoid checking in source code from Swift Package Manager dependencies.
# Packages/
# Package.pins
.build/
.swiftpm

# fastlane
#
# It is recommended to not store the screenshots in the git repo. Instead, use fastlane to re-generate the
# screenshots whenever they are needed.
# For more information about the recommended setup visit:
# https://docs.fastlane.tools/best-practices/source-control/#source-control

fastlane/report.xml
fastlane/Preview.html
fastlane/screenshots
fastlane/test_output
fastlane/.env
fastlane/README.md
1 change: 1 addition & 0 deletions AUTHORS
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Stefan Herold <[email protected]>
8 changes: 7 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,11 @@

## [Unreleased]

## [0.0.3] - 2020-11-19
* [#20](https://github.com/blackjacx/assist/pull/20): Support for Multiple Teams - [@blackjacx](https://github.com/blackjacx).

## [0.0.2] - 2020-09-25
* [#17](https://github.com/blackjacx/assist/pull/17): Implementing Screenshot Tool - [@blackjacx](https://github.com/blackjacx).

## [0.0.1] - 2020-09-16
* [#8](https://github.com/dbdrive/beiwagen/pull/8): Switch to JWTKit - [@blackjacx](https://github.com/blackjacx).
* [#8](https://github.com/blackjacx/assist/pull/8): Switch to JWTKit - [@blackjacx](https://github.com/blackjacx).
Loading

0 comments on commit c654cdb

Please sign in to comment.