Skip to content

Commit

Permalink
Various minor fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
perklet committed Feb 23, 2024
1 parent 86d5f30 commit 68605c1
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 6 deletions.
4 changes: 3 additions & 1 deletion Makefile
Original file line number Diff line number Diff line change
@@ -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):
Expand Down
3 changes: 1 addition & 2 deletions docs/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -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 <https://scrapeninja.net/?utm_source=github&utm_medium=banner&utm_campaign=cffi>_
`ScrapeNinja <https://scrapeninja.net/?utm_source=github&utm_medium=banner&utm_campaign=cffi>`_
is a web scraping API with two engines: fast, with high performance and TLS
fingerprint; and slower with a real browser under the hood.

Expand Down
4 changes: 2 additions & 2 deletions libs.json
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@
"libdir": "~/.local/lib",
"sysname": "linux-gnu",
"so_name": "libcurl-impersonate-chrome.so",
"so_arch": "armv6l"
"so_arch": "arm"
},
{
"system": "Linux",
Expand All @@ -69,6 +69,6 @@
"libdir": "~/.local/lib",
"sysname": "linux-gnu",
"so_name": "libcurl-impersonate-chrome.so",
"so_arch": "armv7l"
"so_arch": "arm"
}
]
3 changes: 2 additions & 1 deletion scripts/build.py
Original file line number Diff line number Diff line change
Expand Up @@ -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():
Expand Down

0 comments on commit 68605c1

Please sign in to comment.