Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore(main): release 7.0.0 #14

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
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
16 changes: 16 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,21 @@
# Changelog

## [7.0.0](https://github.com/cheminfo/sdf-parser/compare/v6.0.1...v7.0.0) (2024-11-04)


### ⚠ BREAKING CHANGES

* The stream should be piped through a TextDecoderStream like for example: const textDecoder = new TextDecoderStream(); for await (const entry of iterator(file.stream().pipeThrough(textDecoder)))

### Features

* update iterator implementation for browser compatibility ([6a53960](https://github.com/cheminfo/sdf-parser/commit/6a539603d0a3e15e3f902412fea2aabf49d7ffce))


### Bug Fixes

* remove side effect on options ([2afdfc8](https://github.com/cheminfo/sdf-parser/commit/2afdfc8e4818d2b587ce2e53c67add726953684a))

## [6.0.1](https://github.com/cheminfo/sdf-parser/compare/v6.0.0...v6.0.1) (2022-10-15)


Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "sdf-parser",
"version": "6.0.1",
"version": "7.0.0",
"description": "SDF parser",
"main": "lib/index.js",
"module": "src/index.js",
Expand Down
Loading