Skip to content

Commit

Permalink
Prepare release 1.4.0
Browse files Browse the repository at this point in the history
  • Loading branch information
supermihi committed Nov 26, 2016
1 parent 498ac4d commit e1c9697
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
5 changes: 3 additions & 2 deletions NEWS
Original file line number Diff line number Diff line change
@@ -1,9 +1,10 @@
Changelog
=========

pytaglib 1.3.1 (2016/11/20)
pytaglib 1.4 (2016/11/26)
---------------------------
This is a non-feature release (no change to the code base)

- Windows version: fix filenames with non-local codepage characters
- update README (pip options for custom taglib install dir - thanks to qbuchanan)
- build windows wheel against taglib-1.11.1
- cython version used to create the shipped cpp-file updated to 0.25.1
Expand Down
5 changes: 2 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -92,13 +92,12 @@ Currently, the PyPI archive contains a binary version only for Python3.5/x64. Fo
1. Download the current [taglib release](https://github.com/taglib/taglib/releases) and extract it somewhere on your computer.
2. Start the VS2015 x64 Native Tools Command Prompt. On Windows 8/10, it might not appear in your start menu, but you can find it here: `C:\ProgramData\Microsoft\Windows\Start Menu\Programs\Visual Studio 2015\Visual Studio Tools\Windows Desktop Command Prompts`
3. Navigate to the extracted taglib folder and type: `cmake -G "Visual Studio 14 2015 Win64" -DCMAKE_INSTALL_PREFIX=".\taglib-install"` to generate the Visual Studio project files.
4. Type `msbuild INSTALL.vcxproj /p:Configuration=Release` which will "install" taglib into the `install` subdirectory.
4. Type `msbuild INSTALL.vcxproj /p:Configuration=Release` which will "install" taglib into the `taglib-install` subdirectory.
3. Still in the VS2015 command prompt, navigate to the pytaglib directory.
4. Tell pytaglib where to find taglib: `set TAGLIB_HOME=C:\Path\To\Taglib\install`
4. Tell pytaglib where to find taglib: `set TAGLIB_HOME=C:\Path\To\taglib-install`
5. Build pytaglib: `python setup.py build` and install: `python setup.py install`



## `pyprinttags`
This package also installs the small script `pyprinttags`. It takes one or more files as
command-line parameters and will display all known metadata of that files on the terminal.
Expand Down
2 changes: 1 addition & 1 deletion src/taglib.pyx
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
from libcpp.utility cimport pair
cimport ctypes

version = '1.3.1'
version = '1.4.0'

cdef unicode toUnicode(ctypes.String s):
"""Converts TagLib::String to a unicode string (``str`` in Python 3, ``unicode`` else)."""
Expand Down

0 comments on commit e1c9697

Please sign in to comment.