Skip to content
Merged
4 changes: 1 addition & 3 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -77,8 +77,6 @@ docs

fastlane/
Gemfile
#config file
Tests/config.json

snyk_output.log
talisman_output.log
talisman_output.log
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# CHANGELOG

## v2.3.1

### Date: 03-Nov-2025

- Github issues fixed

## v2.3.0

### Date: 29-Sep-2025
Expand Down
2 changes: 1 addition & 1 deletion Sources/ImageTransformError.swift
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ import Foundation
/// Information regarding an error received from Contentstack's Image Delivery API.
public struct ImageTransformError: Error, CustomDebugStringConvertible {
/// Human redable error Message
internal let message: String
public let message: String

public var debugDescription: String {
return message
Expand Down
1 change: 0 additions & 1 deletion Sources/Stack.swift
Original file line number Diff line number Diff line change
Expand Up @@ -409,7 +409,6 @@ extension Stack {
/// }
/// }
///```
@available(*, deprecated, message: "This method will be deprecated soon. Please use seqSync instead")
public func sync(_ syncStack: SyncStack = SyncStack(),
syncTypes: [SyncStack.SyncableTypes] = [.all],
then completion: @escaping (_ result: Result<SyncStack, Error>) -> Void) {
Expand Down
4 changes: 2 additions & 2 deletions Sources/Utils.swift
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ internal extension Array {
}
}

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

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

Expand Down
5 changes: 0 additions & 5 deletions Tests/config.json

This file was deleted.