Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
33 changes: 30 additions & 3 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,36 @@



## [3.0.0](https://github.com/cheminfo/genbank-parser/compare/v0.1.0...v3.0.0) (2026-03-06)


### ⚠ BREAKING CHANGES

* migrate to type=module and update dependencies
*

### release-as

* v3.0.0 ([30993d8](https://github.com/cheminfo/genbank-parser/commit/30993d863f6fa00b85ae785db944eebc386d7b97))


### Features

* migrate to type=module and update dependencies ([6af182a](https://github.com/cheminfo/genbank-parser/commit/6af182af5052999ba5d73570a5484bae65691059))
* output date as an ISO string ([70b5656](https://github.com/cheminfo/genbank-parser/commit/70b5656d1f32461d1b5d411f647e7979fa78f52d))
* support parsing of genbank that does not have a genbank division ([d802694](https://github.com/cheminfo/genbank-parser/commit/d80269453e7b610d50bcb36370f8b7aa79f712ec))


### Bug Fixes

* correct genbank parsed result typescript interface ([298a8ce](https://github.com/cheminfo/genbank-parser/commit/298a8ce4ff21f947b0aae071c0cfc6bf80e83ae5))
* fix inreachable code ([5b6fce1](https://github.com/cheminfo/genbank-parser/commit/5b6fce15c942933f09d9a915ea99b565c7a11fed))
* fix parsing when definition contains an = character ([05fa113](https://github.com/cheminfo/genbank-parser/commit/05fa1132be0c9d5627185760c782e8e5f860df74))
* handle annotation with position instead of range ([a3756fe](https://github.com/cheminfo/genbank-parser/commit/a3756fe50f1f9a38aae22b2aac47a0c51b76f1a9))
* initialize references to an empty array ([87907d5](https://github.com/cheminfo/genbank-parser/commit/87907d59c08d59fe29cf7b3e74bde87fb6e20ab5))
* make version and keywords optional in ts definition ([9d25ea5](https://github.com/cheminfo/genbank-parser/commit/9d25ea5a037d895f227373aa8fe0009d4eb0fc74))
* only description is always defined in reference ([3cd0ab3](https://github.com/cheminfo/genbank-parser/commit/3cd0ab3b56c31bb5b59f0950fb98a2b527ea1bdd))

## [1.2.3](https://github.com/cheminfo-js/genbank-parser/compare/v1.2.2...v1.2.3) (2020-05-23)


Expand Down Expand Up @@ -91,6 +121,3 @@ function returns an array of sequence objects.

<a name="0.1.0"></a>
# 0.1.0 (2018-05-17)



2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "genbank-parser",
"version": "2.0.0",
"version": "3.0.0",
"description": "Parse genbank files",
"type": "module",
"exports": {
Expand Down
Loading