diff --git a/ChangeLog b/ChangeLog new file mode 100644 index 0000000..9295a73 --- /dev/null +++ b/ChangeLog @@ -0,0 +1,5 @@ +0.2.0 +----- + +* Add support for Unicode filenames (Thanks to Jacob Evans ) +* Add write support (Thanks to Lennart Melzer ) diff --git a/README.md b/README.md index 936455c..bbb0843 100644 --- a/README.md +++ b/README.md @@ -32,4 +32,5 @@ Credits ------- Original author - Nikhil Marathe -Write support, coffee-script conversion, package.json - Lennart Melzer (https://github.com/lennart) +Write support, original package.json - Lennart Melzer (https://github.com/lennart) +Utf8 filename support - Jacob Evans (https://github.com/dekz) diff --git a/package.json b/package.json index 93cfe5e..dc78621 100644 --- a/package.json +++ b/package.json @@ -1,13 +1,13 @@ { "name": "taglib", "description": "Simple bindings to TagLib", - "version": "0.0.0", + "version": "0.2.0", "repository": { "type": "git", "url": "git://github.com/nikhilm/node-taglib.git" }, "author": "Nikhil Marathe (http://kodeclutz.blogspot.com/)", - "contributors": [ "Lennart Melzer (https://github.com/lennart)" ], + "contributors": [ "Lennart Melzer (https://github.com/lennart)", "Jacob Evans " ], "main": "lib/taglib.js", "directories": { "lib": "lib" diff --git a/wscript b/wscript index ea69f14..40297ea 100644 --- a/wscript +++ b/wscript @@ -5,7 +5,6 @@ from os.path import exists srcdir = "." blddir = "build" -VERSION = "0.0.1" def set_options(opt): opt.tool_options("compiler_cxx")