Skip to content

Releases: rbaumbach/Swizzlean

1.1.0

18 Oct 16:51
1b230da
Compare
Choose a tag to compare

Swift Package Manager (SPM) support has been added.

This also required a fundamental change to the project as well as directory structure.

1.0.3

13 Oct 21:27
f738aae
Compare
Choose a tag to compare

Minor update with Xcode project and copyright date updates only.

1.0.2

14 Jul 23:58
0848f77
Compare
Choose a tag to compare
  • Minor update with Xcode project updates only.

1.0.1

02 Jun 02:33
f79cdcd
Compare
Choose a tag to compare
  • Fix build warnings due to Xcode update

1.0.0 🎉

15 Apr 18:54
797102c
Compare
Choose a tag to compare
  • Add Carthage support
  • Increase minimum deployment target to 8.0

0.2.0

15 Apr 18:56
Compare
Choose a tag to compare
  • New Feature - Swizzlean objects now automatically reset swizzled methods when deallocated. Swizzlean objects now have a "resetWhenDeallocated" that is set to YES by default. If the functionality from Swizzlean version < 0.2.0 is warranted, manually set "resetWhenDeallocated" to NO. This will keep the methods swizzled after Swizzlean objects are deallocated.

0.1.2

15 Apr 18:57
Compare
Choose a tag to compare
  • Update -resetSwizzledInstanceMethod to throw exception if Swizzlean object is currently not swizzling an instance method on a class.
  • Update -resetSwizzledClassMethod to throw exception if Swizzlean object is currently not swizzling a class method on a class.

0.1.1

15 Apr 18:57
Compare
Choose a tag to compare
  • Update -swizzleInstanceMethod:withReplacementImplementation: to throw exception if called on an instance method that doesn't exist in swizzled class.
  • Update -swizzleClassMethod:withReplacementImplementation: to throw exception if called on a class method that doesn't exist in swizzled class.

0.1.0

15 Apr 18:57
Compare
Choose a tag to compare
  • Original Version of Swizzlean