Skip to content

Commit

Permalink
Prep 1.3.1 release (#176)
Browse files Browse the repository at this point in the history
* Update changelog for 1.3.1 release.

* Reformat changelog.

* Bump podspec version to 1.3.1.

* Bump AppAuth podspec dep to 1.6.

* Bump AppAuth Swift package dep to 1.6.

* Update CHANGELOG.md
  • Loading branch information
petea authored Sep 13, 2022
1 parent 9ec2a9c commit 036a31c
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 12 deletions.
21 changes: 12 additions & 9 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,39 +1,42 @@
# GTMAppAuth Changelog
# 1.3.1 (2022-09-13)

## 1.3.0 (2022-05-06)
* Updated the GTMSessionFetcher dependency to allow 2.x versions. ([#155](https://github.com/google/GTMAppAuth/pull/155), [#175](https://github.com/google/GTMAppAuth/pull/175))
* Use secure coding with `NSKeyedArchiver` when available. ([#151](https://github.com/google/GTMAppAuth/pull/145))

# 1.3.0 (2022-05-06)

* Added the option to use the data protection keychain on macOS. ([#151](https://github.com/google/GTMAppAuth/pull/151))
* Unified the keychain access layer, moving macOS to the modern SecItem API. ([#150](https://github.com/google/GTMAppAuth/pull/150))
* Added Swift Package Manager projects for the example apps. ([#153](https://github.com/google/GTMAppAuth/pull/153))

## 1.2.3 (2022-03-22)
# 1.2.3 (2022-03-22)

* Fixed Keychain duplicate entry error on macOS. ([#138](https://github.com/google/GTMAppAuth/pull/138))
* Match GTMSessionFetcher's min macOS version to avoid warnings. ([#142](https://github.com/google/GTMAppAuth/pull/142))

## 1.2.2 (2021-05-04)
# 1.2.2 (2021-05-04)

* Fixed Swift Package Manager issue with Xcode 12.5.

## 1.2.1 (2021-04-02)
# 1.2.1 (2021-04-02)

* Address CocoaPod packaging issue in the 1.2.0 release.

## 1.2.0 (2021-03-31)
# 1.2.0 (2021-03-31)

* Addressed several Swift Package Manager issues.
* Restructured the project for cleaner Swift Package Manager support.

## 1.1.0 (2020-09-29)
# 1.1.0 (2020-09-29)

* Added Swift Package Manager support.
* Added watchOS support.

## 1.0.0 (2019-08-13)
# 1.0.0 (2019-08-13)

* Moved tvOS authorization support out to a branch.

## 0.8.0 (2019-08-01)
# 0.8.0 (2019-08-01)

* Added `tokenRefreshDelegate` to `GTMAppAuthFetcherAuthorization`.
* Updated to depend on AppAuth/Core 1.0.
Expand Down
4 changes: 2 additions & 2 deletions GTMAppAuth.podspec
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
Pod::Spec.new do |s|

s.name = "GTMAppAuth"
s.version = "1.3.0"
s.version = "1.3.1"
s.summary = "Authorize GTM Session Fetcher requests with AppAuth via GTMAppAuth"

s.description = <<-DESC
Expand Down Expand Up @@ -34,5 +34,5 @@ requests with AppAuth.

s.framework = 'Security'
s.dependency 'GTMSessionFetcher/Core', '>= 1.5', '< 3.0'
s.dependency 'AppAuth/Core', '~> 1.4'
s.dependency 'AppAuth/Core', '~> 1.6'
end
2 changes: 1 addition & 1 deletion Package.swift
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ let package = Package(
],
dependencies: [
.package(url: "https://github.com/google/gtm-session-fetcher.git", "1.5.0" ..< "3.0.0"),
.package(url: "https://github.com/openid/AppAuth-iOS.git", "1.4.0" ..< "2.0.0")
.package(url: "https://github.com/openid/AppAuth-iOS.git", "1.6.0" ..< "2.0.0")
],
targets: [
.target(
Expand Down

0 comments on commit 036a31c

Please sign in to comment.