As stated in docs, String(stringInterpolationSegment:) should not be used directly and now swift 5 disallows calling it. It was just used to convert an Int to String in our case. Replaced it with normal string interpolation. Everyone should be happy now.
Fixed breaking change described in #160.
As stated in docs,
String(stringInterpolationSegment:)
should not be used directly and now swift 5 disallows calling it. It was just used to convert anInt
toString
in our case. Replaced it with normal string interpolation. Everyone should be happy now.