Skip to content

Commit 08d7549

Browse files
Merge pull request #117 from contentstack/staging
DX | 03-11-2025 | Release
2 parents 1825d53 + c9324fa commit 08d7549

File tree

6 files changed

+10
-12
lines changed

6 files changed

+10
-12
lines changed

.gitignore

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -77,8 +77,6 @@ docs
7777

7878
fastlane/
7979
Gemfile
80-
#config file
81-
Tests/config.json
8280

8381
snyk_output.log
84-
talisman_output.log
82+
talisman_output.log

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
11
# CHANGELOG
22

3+
## v2.3.1
4+
5+
### Date: 03-Nov-2025
6+
7+
- Github issues fixed
8+
39
## v2.3.0
410

511
### Date: 29-Sep-2025

Sources/ImageTransformError.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ import Foundation
99
/// Information regarding an error received from Contentstack's Image Delivery API.
1010
public struct ImageTransformError: Error, CustomDebugStringConvertible {
1111
/// Human redable error Message
12-
internal let message: String
12+
public let message: String
1313

1414
public var debugDescription: String {
1515
return message

Sources/Stack.swift

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -409,7 +409,6 @@ extension Stack {
409409
/// }
410410
/// }
411411
///```
412-
@available(*, deprecated, message: "This method will be deprecated soon. Please use seqSync instead")
413412
public func sync(_ syncStack: SyncStack = SyncStack(),
414413
syncTypes: [SyncStack.SyncableTypes] = [.all],
415414
then completion: @escaping (_ result: Result<SyncStack, Error>) -> Void) {

Sources/Utils.swift

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ internal extension Array {
2929
}
3030
}
3131

32-
internal extension String {
32+
public extension String {
3333
// Will make a `URL` from the current `String` instance if possible.
3434
func toURL() throws -> URL {
3535
guard var urlComponents = URLComponents(string: self) else {
@@ -90,7 +90,7 @@ internal extension String {
9090
return url
9191
}
9292

93-
func isHexColor() -> Bool {
93+
internal func isHexColor() -> Bool {
9494
let hexColorRegex3Deci = "[0-9A-Fa-f]{3}"
9595
let hexColorPred3Deci = NSPredicate(format: "SELF MATCHES %@", hexColorRegex3Deci)
9696

Tests/config.json

Lines changed: 0 additions & 5 deletions
This file was deleted.

0 commit comments

Comments
 (0)