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 (#25623)
Browse files Browse the repository at this point in the history
  • Loading branch information
tgyhlsb authored Mar 17, 2023
1 parent cd3ce1d commit 7d73ede
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 @@ -10,6 +10,15 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

### Changed

### Fixed


## [1.0.0] - 2023-03-16

### Added

### Changed

- Global: Views will display an error if visible on screen when `clearCurrentUserData()` is called.
- MessagingCore: `watchConversations()`, `watchConversation(withId:)` and `watchItems(ofConversationWithId:)` will send some `UserIdNotSetError` if they are active when `clearCurrentUserData()` is called.
- MessagingUI: `NablaClient.shared.messaging.views` is NOT marked `@MainActor`.
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-alpha34"
spec.version = "1.0.0"
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-alpha34"
spec.version = "1.0.0"
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-alpha34"
spec.version = "1.0.0"
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-alpha34"
spec.version = "1.0.0"
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-alpha34"
spec.version = "1.0.0"
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-alpha34"
spec.version = "1.0.0"
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-alpha34"
let version = "1.0.0"

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

0 comments on commit 7d73ede

Please sign in to comment.