Skip to content

Latest commit

 

History

History
24 lines (20 loc) · 1.1 KB

CHANGELOG.md

File metadata and controls

24 lines (20 loc) · 1.1 KB

CHANGELOG

versions follow SemVer

1.1.0- 2020-04-24

  • Add audit function and corresponding isbn-audit CLI command
  • Add isbn-checksum CLI command
  • Add dist files ./dist/isbn.js and ./dist/isbn.min.js, both being browserified ES5 versions of the module

1.0.0 - 2019-10-07

Fork from isbn2

BREAKING CHANGES

  • accept approximately formatted ISBNs such as '978-4873113364' that would previously have return a null result
  • functions are now directly exposed on the module object:
require('isbn2').ISBN.parse('1933988037').codes.isbn13h // => '978-1-933988-03-0'
// becomes
require('isbn3').parse('1933988037').isbn13h // => '978-1-933988-03-0'

** Added features**