diff --git a/ChangeLog b/ChangeLog index 0309164..9617d4a 100755 --- a/ChangeLog +++ b/ChangeLog @@ -1,6 +1,13 @@ v1.7.0 - * Added tests for core, managers, models, tools, config, interfaces and service bases - * Fixed source URL in media objects through info field + * Added tests for core, managers, models, tools, config, interfaces and service bases (b1) + * Fixed source URL in media objects through info field (b2) + * Fixed minor style issues + * Fixed issue when registering new config options + * Fixed filters + * Fixed several config methods + * Set pic.twitter.com as default service to upload images + * Support for list names with hyphens + * Improved POST requests to be RESTful compliant (b3) v1.6.0 * Fixed proxy support diff --git a/libturpial/api/core.py b/libturpial/api/core.py index aa633b3..acb604a 100755 --- a/libturpial/api/core.py +++ b/libturpial/api/core.py @@ -758,6 +758,7 @@ def minimize_on_close(self): minimize = self.config.read('General', 'minimize-on-close') return True if minimize == 'on' else False + # Should it be deprecated? # WARN: Will be deprecated on next mayor version def get_config(self): return self.config.read_all() diff --git a/setup.py b/setup.py index 3bb457a..c401906 100755 --- a/setup.py +++ b/setup.py @@ -34,7 +34,7 @@ license="GPLv3", keywords='twitter identi.ca microblogging api libturpial', classifiers=[ - "Development Status :: 5 - Production/Stable", + "Development Status :: 4 - Beta", "Environment :: Console", "Intended Audience :: Developers", "License :: OSI Approved :: GNU General Public License (GPL)",