Increase version number, update changelog

This commit is contained in:
Lukáš Lalinský
2013-03-30 19:11:01 +01:00
parent d083fce8fd
commit 03ece714e4
2 changed files with 13 additions and 3 deletions

View File

@@ -1,8 +1,18 @@
Version 1.2 - XXXX-XX-XX
Version 1.2 - 2013-03-30
* Picard now requires at least Python 2.6
* Removed support for AmpliFIND/PUIDs
* Add support for the Ogg Opus file format
* It's now possible to download cover images without any plugin. Cover Art Archive images can be downloaded by image type
* Improved directory scanning performance
* Prefer already-loaded releases of the same RG when matching files
* Allow dropping new files onto specific targets
* Add basic collections management support (PICARD-84)
* Allow adding custom tags in the tag editing dialog (PICARD-349)
* Fix replacing of Windows-incompatible characters (PICARD-393)
* Save both primary and secondary release types (PICARD-240)
* Handle errors from the AcoustID service better (PICARD-391)
* Accept HTTPS URLs on drag-and-drop (PICARD-378)
* Allow adding custom tags in the tag editor (PICARD-349)
Version 1.1 - 2012-09-03
* Always show basic tags in metadata comparison box, even if empty (title,

View File

@@ -17,7 +17,7 @@
# along with this program; if not, write to the Free Software
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
version_info = (1, 1, 0, 'final', 0)
version_info = (1, 2, 0, 'final', 0)
if version_info[3] == 'final':
if version_info[2] == 0:
@@ -28,5 +28,5 @@ else:
version_string = '%d.%d.%d%s%d' % version_info
__version__ = version_string
api_versions = ["0.15.0", "0.15.1", "0.16.0", "1.0.0", "1.1.0"]
api_versions = ["0.15.0", "0.15.1", "0.16.0", "1.0.0", "1.1.0", "1.2.0"]