Skip to content

Commit

Permalink
4.9.0 release
Browse files Browse the repository at this point in the history
  • Loading branch information
dmbaturin committed Mar 19, 2024
1 parent 72d58a9 commit 55da52f
Show file tree
Hide file tree
Showing 3 changed files with 24 additions and 2 deletions.
22 changes: 22 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,25 @@
# 4.9.0 (2024-03-19)

## New features and improvements

* New `startup` hook that runs before soupault processes any pages and can modify the `global_data` variable.

### New plugin API functions

New `Digest` module offers functions for calculating cryptographic hash sums of strings.
All those functions return hex digests.

* `Digest.md5(str)`
* `Digest.sha1(str)`
* `Digest.sha256(str)`
* `Digest.sha512(str)`
* `Digest.blake2s(str)`
* `Digest.blake2b(str)`

Other new functions:

* `Sys.basename_url(str)` and `Sys.dirname_url(str)` — aliases for `Sys.basename_unix` and `Sys.dirname_unix`, respectively.

# 4.8.0 (2024-01-12)

## New features and improvements
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.8.0"
version: "4.9.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, 8, 0, None)
let version = (4, 9, 0, None)

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

0 comments on commit 55da52f

Please sign in to comment.