diff --git a/HISTORY.md b/HISTORY.md index b05c9dc..9ca3c2d 100644 --- a/HISTORY.md +++ b/HISTORY.md @@ -1,3 +1,10 @@ +0.2.8 / 2015-09-14 +------------------ + +- Fixed regression after 0.2.4 for edge conditions in inflate wrapper (#65). + Added more tests to cover possible cases. + + 0.2.7 / 2015-06-09 ------------------ diff --git a/LICENSE b/LICENSE index e6c9e5a..102ad09 100644 --- a/LICENSE +++ b/LICENSE @@ -1,6 +1,6 @@ (The MIT License) -Copyright (C) 2014 by Vitaly Puzrin +Copyright (C) 2014-2015 by Vitaly Puzrin Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/README.md b/README.md index 98d1d8e..e824e05 100644 --- a/README.md +++ b/README.md @@ -160,9 +160,13 @@ Authors - Andrey Tupitsin [@anrd83](https://github.com/andr83) - Vitaly Puzrin [@puzrin](https://github.com/puzrin) -Personal thanks to Vyacheslav Egorov ([@mraleph](https://github.com/mraleph)) -for his awesome tutoruals about optimising JS code for v8, -[IRHydra](http://mrale.ph/irhydra/) tool and his advices. +Personal thanks to: + +- Vyacheslav Egorov ([@mraleph](https://github.com/mraleph)) for his awesome + tutoruals about optimising JS code for v8, [IRHydra](http://mrale.ph/irhydra/) + tool and his advices. +- David Duponchel ([@dduponchel](https://github.com/dduponchel)) for help with + testing. License diff --git a/package.json b/package.json index 7ef9990..9a76e88 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name" : "pako", "description" : "zlib port to javascript - fast, modularized, with browser support", - "version" : "0.2.7", + "version" : "0.2.8", "keywords" : [ "zlib", "deflate", "inflate", "gzip" ], "homepage" : "https://github.com/nodeca/pako",