diff --git a/CHANGELOG.md b/CHANGELOG.md index cd3234f0a..507d2b1a9 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -12,6 +12,8 @@ Group changes to describe their impact on the project, as follows: ## [Unreleased] +## [3.13.9] - 2016-06-15 + ### Added - Added "Forgot your password?" link in Linphone account assistant - [Full IPv6 support to comply Apple requirements] @@ -62,7 +64,8 @@ consider inputs to be phone numbers, otherwise SIP addresses. ### Added - Initial version -[Unreleased]: https://github.com/BelledonneCommunications/linphone-iphone/compare/3.12.1...HEAD +[Unreleased]: https://github.com/BelledonneCommunications/linphone-iphone/compare/3.13.9...HEAD +[3.13.9]: http://www.linphone.org/releases/ios/liblinphone-iphone-sdk-3.13.9.zip [3.12.1]: http://www.linphone.org/releases/ios/liblinphone-iphone-sdk-3.12.1.zip [plugins registration]: https://github.com/BelledonneCommunications/linphone-iphone/blob/3.12.1/Classes/LinphoneManager.m#L1461-L1472 [openh264 issue 2434]: https://github.com/cisco/openh264/issues/2434 diff --git a/TestsLiblinphone/LinphoneTester_Tests.m b/TestsLiblinphone/LinphoneTester_Tests.m index dce866f2f..e6836edbf 100644 --- a/TestsLiblinphone/LinphoneTester_Tests.m +++ b/TestsLiblinphone/LinphoneTester_Tests.m @@ -29,10 +29,6 @@ return [[testString componentsSeparatedByCharactersInSet:charactersToRemove] componentsJoinedByString:@"_"]; } -void tester_logs_handler(int level, const char *fmt, va_list args) { - linphone_iphone_log_handler(NULL, level, fmt, args); -} - + (void)initialize { for (int i = 0; i < bc_tester_nb_suites(); i++) { const char *suite = bc_tester_suite_name(i); @@ -59,22 +55,10 @@ void tester_logs_handler(int level, const char *fmt, va_list args) { } } -- (void)setUp { - [super setUp]; -} - -- (void)tearDown { - [super tearDown]; -} - - (void)testForSuite:(NSString *)suite andTest:(NSString *)test { LOGI(@"Launching test %@ from suite %@", test, suite); XCTAssertFalse(bc_tester_run_tests(suite.UTF8String, test.UTF8String, NULL), @"Suite '%@' / Test '%@' failed", suite, test); } -- (void)dealloc { - liblinphone_tester_clear_accounts(); -} - @end