Skip to content
This repository has been archived by the owner on Aug 26, 2023. It is now read-only.

Commit

Permalink
Bump version to 2.0.3
Browse files Browse the repository at this point in the history
Bump the version to 2.0.3 and write up some of the changes for this
version.
  • Loading branch information
stevecheckoway committed Nov 22, 2020
1 parent a624096 commit 2dc79ca
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 5 deletions.
18 changes: 14 additions & 4 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,24 +7,34 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.

## [Unreleased]
### Added
### Changed
### Deprecated
### Removed
### Fixed
### Security

## [2.0.3] - 2020-11-21
### Added
- Limit enforced on number of attributes per element, defaulting to 400 and
configurable with the `:max_attributes` argument.

### Changed
### Deprecated
### Removed
### Fixed
- Ignore UTF-8 byte order mark at the beginning of the input.
- Fix content sniffing for Unicode strings.
- Fixed crash where Ruby objects constructed in C can be garbage collected.
### Security

## [2.0.2] - 2019-11-19
### Added
- Support Ruby 2.6
### Fixed
- Fix assertion failures with nonstandard HTML tags
- Fix assertion failures with nonstandard HTML tags.
- Fix the handling of mis-nested formatting tags (the adoption agency
algorithm)
- Fix crash with zero-length HTML tags
algorithm).
- Fix crash with zero-length HTML tags.
### Security
- Prevent 1-byte buffer over read when constructing an error message about an
unexpected EOF.
Expand All @@ -39,7 +49,7 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
undocumented).
- Added proper HTML5 serialization.
- Added option `:max_errors` to control the maximum number of errors reported
by `#errors`
by `#errors`.
- Added option `:max_tree_depth` to control the maximum parse tree depth.
- Line number support via `Nokogiri::XML::Node#line` as long as Nokogumbo has
been compiled with libxml2 support.
Expand Down
2 changes: 1 addition & 1 deletion lib/nokogumbo/version.rb
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
module Nokogumbo
VERSION = "2.0.2"
VERSION = "2.0.3"
end

0 comments on commit 2dc79ca

Please sign in to comment.