Skip to content

Commit

Permalink
Bump version to 1.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Sannis committed Sep 28, 2010
1 parent 1b91050 commit b50916f
Show file tree
Hide file tree
Showing 3 changed files with 26 additions and 3 deletions.
23 changes: 23 additions & 0 deletions CHANGELOG.markdown
Original file line number Diff line number Diff line change
@@ -1,3 +1,26 @@
## Version 1.0.0
* Fixes:
* Rewrite fetchAll function, move V8 stuff to EIO_After_FetchAll, closes #34
* Rewrite MysqlResult::SetFieldValue() procedure to GetFieldValue() function
* Fix Nodules break, closes #46
* Return Boolean/throw exception fixes, closes #31
* Allocate less memory in MysqlConnection::EscapeSync()
* Add useful macroses to simplify MysqlConnection and MysqlResult
* Fix lint errors
* Tests improvements:
* Refactor tests: split them into simple, complex, slow and ignored
* Change nodeunit to original caolan's repo
* Add REPL memory leaks finder
* Documentation improvements:
* Add index.html generation from README.markdown
* Format ChangeLog with markdown
* Add changelog.html generation from CHANGELOG.markdown
* Add navigation
* Add zip- and tarball URLs to index.html
* Remove docs HTML from repo, you can generate them by 'node-waf doc'
* Semantic versioning introduced
* Other changes in README and package.json

## Version 0.0.10
* Add JSDocs into bindings code
* Add API documentation page
Expand Down
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{ "name" : "mysql-libmysqlclient"
, "description" : "MySQL bindings for Node.JS"
, "description" : "Binary MySQL bindings for Node.JS"
, "homepage" : "http://sannis.github.com/node-mysql-libmysqlclient"
, "version" : "0.0.10"
, "version" : "1.0.0"
, "maintainers" :
[ { "name": "Oleg Efimov"
, "email": "efimovov@gmail.com"
Expand Down
2 changes: 1 addition & 1 deletion wscript
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ from os.path import exists

srcdir = "."
blddir = "build"
VERSION = "0.0.10"
VERSION = "1.0.0"

def set_options(opt):
opt.tool_options("compiler_cxx")
Expand Down

0 comments on commit b50916f

Please sign in to comment.