Skip to content
This repository was archived by the owner on Apr 30, 2024. It is now read-only.

Commit

Permalink
[iOS SDK] Release version 1.0.0-alpha32 (#24875)
Browse files Browse the repository at this point in the history
  • Loading branch information
tgyhlsb authored Feb 14, 2023
1 parent 3e14c07 commit a530b9a
Show file tree
Hide file tree
Showing 8 changed files with 16 additions and 7 deletions.
9 changes: 9 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,15 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

### Added

### Changed

### Fixed


## [1.0.0-alpha32] - 2023-02-14

### Added

- Core: Added a new `watchEventsConnectionState` method on `NablaClient` which allows you to monitor the current state of the network connection used to receive live events.
- Messaging Core: Added a new `Response` object returned by watchers. It contains metadata about the freshness of the data returned, allowing the caller to know if the data comes from cache or is fresh and if a background refresh is in progress.
- VideoCall: Disabled screen idling during video calls.
Expand Down
2 changes: 1 addition & 1 deletion NablaCore.podspec
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
Pod::Spec.new do |spec|

spec.name = "NablaCore"
spec.version = "1.0.0-alpha31"
spec.version = "1.0.0-alpha32"
spec.summary = "#{spec.name} iOS SDK"

spec.description = <<-DESC
Expand Down
2 changes: 1 addition & 1 deletion NablaDocumentScanner.podspec
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
Pod::Spec.new do |spec|

spec.name = "NablaDocumentScanner"
spec.version = "1.0.0-alpha31"
spec.version = "1.0.0-alpha32"
spec.summary = "#{spec.name} iOS SDK"

spec.description = <<-DESC
Expand Down
2 changes: 1 addition & 1 deletion NablaMessagingCore.podspec
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
Pod::Spec.new do |spec|

spec.name = "NablaMessagingCore"
spec.version = "1.0.0-alpha31"
spec.version = "1.0.0-alpha32"
spec.summary = "#{spec.name} iOS SDK"

spec.description = <<-DESC
Expand Down
2 changes: 1 addition & 1 deletion NablaMessagingUI.podspec
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
Pod::Spec.new do |spec|

spec.name = "NablaMessagingUI"
spec.version = "1.0.0-alpha31"
spec.version = "1.0.0-alpha32"
spec.summary = "#{spec.name} iOS SDK"

spec.description = <<-DESC
Expand Down
2 changes: 1 addition & 1 deletion NablaScheduling.podspec
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
Pod::Spec.new do |spec|

spec.name = "NablaScheduling"
spec.version = "1.0.0-alpha31"
spec.version = "1.0.0-alpha32"
spec.summary = "#{spec.name} iOS SDK"

spec.description = <<-DESC
Expand Down
2 changes: 1 addition & 1 deletion NablaVideoCall.podspec
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
Pod::Spec.new do |spec|

spec.name = "NablaVideoCall"
spec.version = "1.0.0-alpha31"
spec.version = "1.0.0-alpha32"
spec.summary = "#{spec.name} iOS SDK"

spec.description = <<-DESC
Expand Down
2 changes: 1 addition & 1 deletion Sources/NablaCore/Data/Environment/EnvironmentImpl.swift
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import Foundation

class EnvironmentImpl: Environment {
let platform = "ios"
let version = "1.0.0-alpha31"
let version = "1.0.0-alpha32"

var serverUrl: URL {
var components = URLComponents()
Expand Down

0 comments on commit a530b9a

Please sign in to comment.