diff --git a/Makefile b/Makefile index 0e8df744..673c591a 100644 --- a/Makefile +++ b/Makefile @@ -1,6 +1,8 @@ .ONESHELL: SHELL := bash -VERSION := 0.6.1 + +# this is the upstream libcurl-impersonate version +VERSION := 0.6.0 CURL_VERSION := curl-8.1.1 $(CURL_VERSION): diff --git a/docs/index.rst b/docs/index.rst index c56cd625..bdc47024 100644 --- a/docs/index.rst +++ b/docs/index.rst @@ -212,9 +212,8 @@ ScrapeNinja .. image:: https://scrapeninja.net/img/logo_with_text_new5.svg :width: 149 :alt: ScrapeNinja - :target: https://scrapeninja.net/?utm_source=github&utm_medium=banner&utm_campaign=cffi -`ScrapeNinja _ +`ScrapeNinja `_ is a web scraping API with two engines: fast, with high performance and TLS fingerprint; and slower with a real browser under the hood. diff --git a/libs.json b/libs.json index 1b662838..a8961e07 100644 --- a/libs.json +++ b/libs.json @@ -60,7 +60,7 @@ "libdir": "~/.local/lib", "sysname": "linux-gnu", "so_name": "libcurl-impersonate-chrome.so", - "so_arch": "armv6l" + "so_arch": "arm" }, { "system": "Linux", @@ -69,6 +69,6 @@ "libdir": "~/.local/lib", "sysname": "linux-gnu", "so_name": "libcurl-impersonate-chrome.so", - "so_arch": "armv7l" + "so_arch": "arm" } ] diff --git a/scripts/build.py b/scripts/build.py index c48be73f..09f853de 100644 --- a/scripts/build.py +++ b/scripts/build.py @@ -8,7 +8,8 @@ from cffi import FFI -__version__ = "0.6.1" +# this is the upstream libcurl-impersonate version +__version__ = "0.6.0" def detect_arch():