Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: ionic-team/ionic-portals-ios
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 0.11.1
Choose a base ref
...
head repository: ionic-team/ionic-portals-ios
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 0.12.0
Choose a head ref
  • 2 commits
  • 5 files changed
  • 2 contributors

Commits on Jan 20, 2025

  1. feat!: BREAKING update to Capacitor 7 (#90)

    * feat!: BREAKING update to Capacitor 7
    trevor-lambert authored Jan 20, 2025

    Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature.
    Copy the full SHA
    ed2e009 View commit details
  2. Release 0.12.0

    Co-authored-by: trevor-lambert <[email protected]>
    trevor-lambert and trevor-lambert authored Jan 20, 2025

    Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature.
    Copy the full SHA
    7a29f48 View commit details
Showing with 6 additions and 58 deletions.
  1. +3 −3 IonicPortals.podspec
  2. +2 −2 Package.swift
  3. +0 −23 Sources/IonicPortals/JSONDecoder+JSObject.swift
  4. +0 −29 Sources/IonicPortals/JSONEncoder+JSObject.swift
  5. +1 −1 package.json
6 changes: 3 additions & 3 deletions IonicPortals.podspec
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
Pod::Spec.new do |s|
s.name = 'IonicPortals'
s.version = '0.11.1'
s.version = '0.12.0'
s.summary = 'Ionic Portals'
s.social_media_url = 'https://twitter.com/capacitorjs'
s.license = 'Commercial'
s.homepage = 'https://ionic.io/portals'
s.ios.deployment_target = '13.0'
s.ios.deployment_target = '14.0'
s.authors = { 'Ionic Team' => 'hi@ionicframework.com' }
s.source = { git: 'https://github.com/ionic-team/ionic-portals-ios.git', tag: s.version.to_s }
s.source_files = 'Sources/IonicPortals/**/*.swift'
s.dependency 'Capacitor', '~> 6.0'
s.dependency 'Capacitor', '~> 7.0.0'
s.dependency 'IonicLiveUpdates', '>= 0.5.0', '< 0.6.0'
s.swift_version = '5.7'
end
4 changes: 2 additions & 2 deletions Package.swift
Original file line number Diff line number Diff line change
@@ -4,15 +4,15 @@ import PackageDescription

let package = Package(
name: "IonicPortals",
platforms: [.iOS(.v13)],
platforms: [.iOS(.v14)],
products: [
.library(
name: "IonicPortals",
targets: ["IonicPortals"]
)
],
dependencies: [
.package(url: "https://github.com/ionic-team/capacitor-swift-pm", .upToNextMajor(from: "6.0.0")),
.package(url: "https://github.com/ionic-team/capacitor-swift-pm", .upToNextMajor(from: "7.0.0")),
.package(url: "https://github.com/ionic-team/ionic-live-updates-releases", "0.5.0"..<"0.6.0"),
.package(url: "https://github.com/pointfreeco/swift-clocks", .upToNextMajor(from: "1.0.2"))
],
23 changes: 0 additions & 23 deletions Sources/IonicPortals/JSONDecoder+JSObject.swift

This file was deleted.

29 changes: 0 additions & 29 deletions Sources/IonicPortals/JSONEncoder+JSObject.swift

This file was deleted.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -3,7 +3,7 @@
"private": true,
"scripts": {
"build": "npm run build:docs && npm run build:transform",
"build:docs": "xcodebuild docbuild -scheme IonicPortals -derivedDataPath DerivedData -destination 'platform=iOS Simulator,name=iPhone 15'",
"build:docs": "xcodebuild docbuild -scheme IonicPortals -derivedDataPath DerivedData -destination 'platform=iOS Simulator,name=iPhone 16 Pro'",
"build:transform": "mv DerivedData/Build/Products/Debug-iphonesimulator/IonicPortals.doccarchive public"
}
}