Skip to content

Commit

Permalink
4.11.0 release
Browse files Browse the repository at this point in the history
  • Loading branch information
dmbaturin committed Sep 6, 2024
1 parent d21123c commit 6f4790d
Show file tree
Hide file tree
Showing 3 changed files with 17 additions and 2 deletions.
15 changes: 15 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,18 @@
# 4.11.0 (2024-09-06)

## New features

* It's now possible to use `:has()` selector in options that accept CSS selectors (implemented in lambdasoup 1.1.0)

### New plugin API functions

* `HTML.is_text(e)` — checks if an HTML element tree node is a text node.

## Bug fixes

* `HTML.is_document(e)` now correctly returns true for values created with `HTML.parse()` and `HTML.create_document()`.
* Namespaces are now correctly preserved in HTML element attribute names (implemented in lambdasoup 1.1.1).

# 4.10.0 (2024-04-21)

## New features
Expand Down
2 changes: 1 addition & 1 deletion soupault.opam
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
opam-version: "2.0"
name: "soupault"
version: "4.10.0"
version: "4.11.0"
synopsis: "Static website generator based on HTML rewriting"
description: """
A website generator that works with page element tree rather than text
Expand Down
2 changes: 1 addition & 1 deletion src/defaults.ml
Original file line number Diff line number Diff line change
Expand Up @@ -347,7 +347,7 @@ let default_settings = {
soupault_version = None;
}

let version = (4, 10, 0, None)
let version = (4, 11, 0, None)

let version_to_string v =
let major, minor, patch, suffix = v in
Expand Down

0 comments on commit 6f4790d

Please sign in to comment.