This commit is contained in:
Gwendal Roué 2019-01-05 15:40:05 +01:00
parent ac40b63262
commit d265e2d77b
10 changed files with 17 additions and 16 deletions

View File

@ -7,7 +7,7 @@ GRDB adheres to [Semantic Versioning](https://semver.org/).
#### 3.x Releases
- `3.6.x` Releases - [3.6.0](#360) | [3.6.1](#361)
- `3.6.x` Releases - [3.6.0](#360) | [3.6.1](#361) | [3.6.2](#362)
- `3.5.x` Releases - [3.5.0](#350)
- `3.4.x` Releases - [3.4.0](#340)
- `3.3.x` Releases - [3.3.0](#330) | [3.3.1](#331)
@ -42,8 +42,9 @@ GRDB adheres to [Semantic Versioning](https://semver.org/).
- [0.110.0](#01100), ...
## Next Release
### 3.6.2
Released January 5, 2019 • [diff](https://github.com/groue/GRDB.swift/compare/v3.6.1...v3.6.2)
### Fixed

View File

@ -1909,7 +1909,7 @@ This documentation owns a lot to the [Active Record Associations](http://guides.
**GRDB**
Copyright (C) 2018 Gwendal Roué
Copyright (C) 2019 Gwendal Roué
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

View File

@ -15,7 +15,7 @@ GRDB builds SQLite with [swiftlyfalling/SQLiteLib](https://github.com/swiftlyfal
```sh
cd [GRDB directory]
git checkout v3.6.1
git checkout v3.6.2
git submodule update --init SQLiteCustom/src
````

View File

@ -1,6 +1,6 @@
Pod::Spec.new do |s|
s.name = 'GRDB.swift'
s.version = '3.6.1'
s.version = '3.6.2'
s.license = { :type => 'MIT', :file => 'LICENSE' }
s.summary = 'A toolkit for SQLite databases, with a focus on application development.'

View File

@ -1,6 +1,6 @@
Pod::Spec.new do |s|
s.name = 'GRDBCipher'
s.version = '3.6.1'
s.version = '3.6.2'
s.license = { :type => 'MIT', :file => 'LICENSE' }
s.summary = 'A toolkit for SQLite databases, with a focus on application development.'

View File

@ -1,6 +1,6 @@
Pod::Spec.new do |s|
s.name = 'GRDBPlus'
s.version = '3.6.1'
s.version = '3.6.2'
s.license = { :type => 'MIT', :file => 'LICENSE' }
s.summary = 'A toolkit for SQLite databases, with a focus on application development.'

View File

@ -1,4 +1,4 @@
Copyright (C) 2018 Gwendal Roué
Copyright (C) 2019 Gwendal Roué
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

View File

@ -441,7 +441,7 @@ ifdef JAZZY
--author 'Gwendal Roué' \
--author_url https://github.com/groue \
--github_url https://github.com/groue/GRDB.swift \
--github-file-prefix https://github.com/groue/GRDB.swift/tree/v3.6.1 \
--github-file-prefix https://github.com/groue/GRDB.swift/tree/v3.6.2 \
--module-version 3.6 \
--module GRDB \
--root-url http://groue.github.io/GRDB.swift/docs/3.6/ \

View File

@ -3,14 +3,14 @@ GRDB 3 [![Swift](https://img.shields.io/badge/swift-4.1-orange.svg?style=flat)](
### A toolkit for SQLite databases, with a focus on application development
**Latest release**: December 9, 2018 • version 3.6.1 • [CHANGELOG](CHANGELOG.md) • [Migrating From GRDB 2 to GRDB 3](Documentation/GRDB2MigrationGuide.md)
**Latest release**: January 5, 2018 • version 3.6.2 • [CHANGELOG](CHANGELOG.md) • [Migrating From GRDB 2 to GRDB 3](Documentation/GRDB2MigrationGuide.md)
**Requirements**: iOS 8.0+ / macOS 10.9+ / watchOS 2.0+ • Swift 4.1+ / Xcode 9.3+
| Swift version | GRDB version |
| ------------- | ----------------------------------------------------------- |
| **Swift 4.2** | **v3.6.1** |
| **Swift 4.1** | **v3.6.1** |
| **Swift 4.2** | **v3.6.2** |
| **Swift 4.1** | **v3.6.2** |
| Swift 4 | [v2.10.0](https://github.com/groue/GRDB.swift/tree/v2.10.0) |
| Swift 3.2 | [v1.3.0](https://github.com/groue/GRDB.swift/tree/v1.3.0) |
| Swift 3.1 | [v1.3.0](https://github.com/groue/GRDB.swift/tree/v1.3.0) |
@ -323,7 +323,7 @@ The [Swift Package Manager](https://swift.org/package-manager/) automates the di
```swift
let package = Package(
dependencies: [
.package(url: "https://github.com/groue/GRDB.swift.git", from: "3.6.1")
.package(url: "https://github.com/groue/GRDB.swift.git", from: "3.6.2")
]
)
```
@ -340,7 +340,7 @@ If you decide to use Carthage despite this warning, and get any Carthage-related
## Manually
1. [Download](https://github.com/groue/GRDB.swift/releases/tag/v3.6.1) a copy of GRDB, or clone its repository and make sure you use the latest tagged version with the `git checkout v3.6.1` command.
1. [Download](https://github.com/groue/GRDB.swift/releases/tag/v3.6.2) a copy of GRDB, or clone its repository and make sure you use the latest tagged version with the `git checkout v3.6.2` command.
2. Embed the `GRDB.xcodeproj` project in your own project.
@ -7240,7 +7240,7 @@ Alternatively, perform a manual installation of GRDB and SQLCipher:
```sh
cd [GRDB directory]
git checkout v3.6.1
git checkout v3.6.2
git submodule update --init SQLCipher/src
```

View File

@ -15,7 +15,7 @@
<key>CFBundlePackageType</key>
<string>FMWK</string>
<key>CFBundleShortVersionString</key>
<string>3.6.0</string>
<string>3.6.2</string>
<key>CFBundleSignature</key>
<string>????</string>
<key>CFBundleVersion</key>