Skip to content

Commit 00195e4

Browse files
committed
Upgrade to lexbor v2.7.0
v2.7.0 was not released when this PR was opened. Apart from bumping version numbers, nothing changed.
1 parent cda953a commit 00195e4

File tree

5 files changed

+9
-6
lines changed

5 files changed

+9
-6
lines changed

ext/dom/lexbor/lexbor/core/base.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ extern "C" {
2727
#include "lexbor/core/lexbor.h"
2828

2929
#define LEXBOR_VERSION_MAJOR 2
30-
#define LEXBOR_VERSION_MINOR 8
30+
#define LEXBOR_VERSION_MINOR 7
3131
#define LEXBOR_VERSION_PATCH 0
3232

3333
#define LEXBOR_VERSION_STRING LEXBOR_STRINGIZE(LEXBOR_VERSION_MAJOR) "." \

ext/dom/lexbor/lexbor/dom/base.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ extern "C" {
1616

1717

1818
#define LXB_DOM_VERSION_MAJOR 2
19-
#define LXB_DOM_VERSION_MINOR 1
19+
#define LXB_DOM_VERSION_MINOR 0
2020
#define LXB_DOM_VERSION_PATCH 0
2121

2222
#define LXB_DOM_VERSION_STRING \

ext/dom/lexbor/lexbor/html/base.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (C) 2018-2026 Alexander Borisov
2+
* Copyright (C) 2018-2025 Alexander Borisov
33
*
44
* Author: Alexander Borisov <borisov@lexbor.com>
55
*/
@@ -15,7 +15,7 @@ extern "C" {
1515

1616

1717
#define LXB_HTML_VERSION_MAJOR 2
18-
#define LXB_HTML_VERSION_MINOR 9
18+
#define LXB_HTML_VERSION_MINOR 8
1919
#define LXB_HTML_VERSION_PATCH 0
2020

2121
#define LXB_HTML_VERSION_STRING LEXBOR_STRINGIZE(LXB_HTML_VERSION_MAJOR) "." \

ext/dom/lexbor/patches/README.md

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,10 @@
11
# Lexbor patches
22

3+
> [!IMPORTANT]
4+
> This process was largely automated in update-lexbor.sh.
5+
36
Upon syncing the Lexbor sources, the patches in this directory need to be applied.
4-
The current Lexbor version is 2.5.0.
7+
The current Lexbor version is 2.7.0.
58

69
## Overview
710

ext/dom/lexbor/patches/update-lexbor.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ set -e
44

55
PATCHES_DIR="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)"
66
LEXBOR_REPO="https://github.com/lexbor/lexbor"
7-
LEXBOR_REF="49982b5874aa7d5d79e8a15654fbabc2efb9dc90"
7+
LEXBOR_REF="v2.7.0"
88
LEXBOR_BASE="$(cd "$PATCHES_DIR/.." && pwd)"
99
LEXBOR_DIR="$LEXBOR_BASE/lexbor"
1010
LEXBOR_TMP_DIR="$LEXBOR_BASE/lexbor_tmp"

0 commit comments

Comments
 (0)