Skip to content

Commit

Permalink
Merge branch 'master' into matti/all-classes-public-inits
Browse files Browse the repository at this point in the history
  • Loading branch information
mroloux authored Aug 28, 2024
2 parents 3eb9588 + 3890144 commit cbc4d94
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 2 deletions.
3 changes: 2 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ seatsio-ios allows rendering seats.io seating charts inside an iOS application.
Add this to your podfile:

```
pod 'seatsio', '15.2.0'
pod 'seatsio', '15.4.0'
```

## Usage
Expand All @@ -33,6 +33,7 @@ class SeatingChartSample: UIViewController {

override func viewDidDisappear(_ animated: Bool) {
seatsio.cleanup()
seatsio = nil
}
}
```
Expand Down
1 change: 1 addition & 0 deletions seatsio-ios/SeatsioWebView.swift
Original file line number Diff line number Diff line change
Expand Up @@ -184,6 +184,7 @@ public class SeatsioWebView: WKWebView {

public func cleanup() {
bridge.cleanUp()
bridge = nil
}
}

Expand Down
2 changes: 1 addition & 1 deletion seatsio.podspec
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Pod::Spec.new do |s|
s.name = 'seatsio'
s.version = '15.2.0'
s.version = '15.4.0'
s.summary = 'The official Seats.io library for iOS'
s.homepage = 'https://github.com/seatsio/seatsio-ios'
s.license = { :type => 'MIT', :file => 'LICENSE' }
Expand Down

0 comments on commit cbc4d94

Please sign in to comment.