Skip to content

Commit

Permalink
Merge commit '3cab1d74e6ed0a5c5cca5b13dfeaa2ec5158f983'
Browse files Browse the repository at this point in the history
* commit '3cab1d74e6ed0a5c5cca5b13dfeaa2ec5158f983':
  v0.8.0
  Documentation for groue#31
  First draft for a CocoaPods spec
  Fix some spelling errors

# Conflicts:
#	README.md
  • Loading branch information
ddddxxx committed Feb 15, 2020
2 parents e4543d6 + 3cab1d7 commit 582956c
Show file tree
Hide file tree
Showing 4 changed files with 30 additions and 1 deletion.
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ All notable changes to this project will be documented in this file.

#### 0.x Releases

- [0.8.0](#080)
- [0.7.1](#071)
- [0.7.0](#070)
- [0.6.0](#060)
Expand All @@ -16,6 +17,12 @@ All notable changes to this project will be documented in this file.
- [0.1.0](#010)


## 0.8.0

Released February 14, 2020

- [#31](https://github.com/groue/GRDBCombine/pull/31) by [@pocketpixels](http://github.com/pocketpixels): Support for CocoaPods

## 0.7.1

Released December 10, 2019
Expand Down
2 changes: 1 addition & 1 deletion Documentation/Demo/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ Demo Application

Players defines read and write operations on the players database.

It exposes a [publisher](../../Sources/GRDBCombine/DatabasePublishersValue.swift) of HallOfFame, that changes everytime the database is modified.
It exposes a [publisher](../../Sources/GRDBCombine/DatabasePublishersValue.swift) of HallOfFame, that changes every time the database is modified.

```swift
struct HallOfFame {
Expand Down
22 changes: 22 additions & 0 deletions GRDBCombine.podspec
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
Pod::Spec.new do |s|
s.name = 'GRDBCombine'
s.version = '0.8.0'

s.license = { :type => 'MIT', :file => 'LICENSE' }
s.summary = 'A set of extensions for SQLite, GRDB.swift, and Combine'
s.homepage = 'https://github.com/groue/GRDBCombine'
s.author = { 'Gwendal Roué' => '[email protected]' }
s.source = { :git => 'https://github.com/groue/GRDBCombine.git', :tag => "v#{s.version}" }
s.module_name = 'GRDBCombine'

s.swift_versions = ['5.0']
s.ios.deployment_target = '13.0'
s.osx.deployment_target = '10.15'
s.watchos.deployment_target = '6.0'
s.tvos.deployment_target = '13.0'

s.framework = 'Combine'
s.source_files = 'Sources/GRDBCombine/*.swift'
s.dependency 'GRDB.swift', '~> 4.1'

end

0 comments on commit 582956c

Please sign in to comment.