Skip to content

Commit b9d7947

Browse files
committedDec 17, 2021
bump version to v1.0.1
1 parent 70dfd66 commit b9d7947

File tree

5 files changed

+5
-5
lines changed

5 files changed

+5
-5
lines changed
 

‎CMakeLists.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
# Allow cmake to set VERSION variables
44
# https://cmake.org/cmake/help/latest/policy/CMP0048.html
55
cmake_policy(SET CMP0048 NEW)
6-
project(htmlext VERSION 1.0.0)
6+
project(htmlext VERSION 1.0.1)
77

88
cmake_minimum_required(VERSION 3.8 FATAL_ERROR)
99

‎README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ The npm package is compatible with:
6767
**Dependencies**: g++ ≥7.3 or clang ≥6.0, cmake ≥3.8, libboost-dev ≥1.55, libboost-regex-dev ≥1.55, libboost-program-options-dev ≥1.55, libgumbo-dev ≥0.10.1 and rapidjson-dev ≥1.1.0
6868

6969
```
70-
wget https://github.com/html-extract/hext/archive/v1.0.0.tar.gz
70+
wget https://github.com/html-extract/hext/archive/v1.0.1.tar.gz
7171
tar xf *.tar.gz
7272
cd hext*/build
7373
cmake -DBUILD_SHARED_LIBS=On .. && make -j 2

‎libhext/CMakeLists.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
# https://cmake.org/cmake/help/latest/policy/CMP0048.html
55
cmake_policy(SET CMP0048 NEW)
66

7-
project(Hext VERSION 1.0.0)
7+
project(Hext VERSION 1.0.1)
88

99
cmake_minimum_required(VERSION 3.8 FATAL_ERROR)
1010

‎scripts/github-actions/npm/assets/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "hext",
3-
"version": "11.0.0",
3+
"version": "11.0.1",
44
"description": "Domain-specific language for extracting structured data from HTML",
55
"homepage": "https://hext.thomastrapp.com",
66
"bugs": "https://github.com/html-extract/hext/issues",

‎scripts/github-actions/pypi/assets/setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ def run(self):
3131
setup(
3232
name='hext',
3333
package_data={'hext': ['_hext.so', 'gumbo.license', 'rapidjson.license']},
34-
version='1.0.0',
34+
version='1.0.1',
3535
description="A module and command-line utility to extract structured data from HTML",
3636
long_description=long_description,
3737
long_description_content_type="text/markdown",

0 commit comments

Comments
 (0)
Please sign in to comment.