Skip to content

Releases: drmohundro/SWXMLHash

Fix - issue with XMLIndexer.byKey(_:)

10 Nov 14:29
Compare
Choose a tag to compare

Released on 2017-11-10.

  • Fix XMLIndexer.byKey(_:) bug (fixed in #165)

Fix - characters deprecation

09 Nov 20:32
f656a1f
Compare
Choose a tag to compare

Released on 2017-11-09.

  • Fix characters deprecation (issue #163 fixed in #164)

Fix - off by one error in byIndex

28 Sep 14:53
Compare
Choose a tag to compare

Released on 2017-09-28.

  • Fix off by one byIndex error (issue #155 fixed in #156)

Xcode 9 Compatibility Release

22 Sep 02:11
Compare
Choose a tag to compare

Released on 2017-09-21.

Xcode 9 related compatibility fixes (via #152). See also #151.

Temporary Fix - Disabling Code Coverage for Carthage

22 Sep 22:35
Compare
Choose a tag to compare

Disable code coverage related to Carthage. (see #149)

Feature - Allow for custom string encoding

22 Sep 22:36
Compare
Choose a tag to compare

Released on 2017-08-27.

Added new config option to allow for overriding the string encoding (via #119).

Xcode 9 beta compatibility

22 Sep 22:37
Compare
Choose a tag to compare

Released on 2017-06-01.

Added recommended Xcode 9.3 project settings (via #144).

Feature - caseInsensitive lookup

22 Sep 22:38
Compare
Choose a tag to compare

Released on 2017-06-01.

Added caseInsensitive lookup options (via #137).

Swift 4.0 Release

22 Sep 22:42
Compare
Choose a tag to compare

Released on 2017-05-15.

  • Changed all enums to be camel cased (e.g. thisValue versus ThisValue) to match the Swift naming recommendations
  • Removed Sequence from XMLIndexer to avoid a conflict with the element property coming in Swift 4
    • As a result, for-in no longer works directly against XMLIndexer; however, for-in works just fine against the .all method
  • Changed .text to no longer be optional

(via #133, #134 and #135)

Feature - recursiveText property

24 Sep 19:09
Compare
Choose a tag to compare

Released on 2017-05-15.

Added recursiveText property which pulls the text property from the currently indexed element and all child elements. (see PR #131)