Skip to content
This repository was archived by the owner on Mar 5, 2022. It is now read-only.

Commit 40668c0

Browse files
committed
Prepare for release v4.3.2
1 parent 10d945d commit 40668c0

File tree

5 files changed

+16
-8
lines changed

5 files changed

+16
-8
lines changed

CHANGELOG

+8
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,11 @@
1+
googler 4.3.2
2+
2021-01-21
3+
4+
- Fix html class of result nodes (#393, fixes #392)
5+
- Do not sabotage stdin of url_handler (#386)
6+
7+
-------------------------------------------------------------------------------
8+
19
googler 4.3.1
210
2020-10-10
311

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -227,7 +227,7 @@ To remove `googler` and associated docs, run
227227

228228
To install the latest stable version, run
229229

230-
$ sudo curl -o /usr/local/bin/googler https://raw.githubusercontent.com/jarun/googler/v4.3.1/googler && sudo chmod +x /usr/local/bin/googler
230+
$ sudo curl -o /usr/local/bin/googler https://raw.githubusercontent.com/jarun/googler/v4.3.2/googler && sudo chmod +x /usr/local/bin/googler
231231

232232
You could then let googler upgrade itself by running
233233

googler

+3-3
Original file line numberDiff line numberDiff line change
@@ -90,8 +90,8 @@ except ValueError:
9090

9191
# Constants
9292

93-
_VERSION_ = '4.3.1'
94-
_EPOCH_ = '20201001'
93+
_VERSION_ = '4.3.2'
94+
_EPOCH_ = '20210115'
9595

9696
COLORMAP = {k: '\x1b[%sm' % v for k, v in {
9797
'a': '30', 'b': '31', 'c': '32', 'd': '33',
@@ -2369,7 +2369,7 @@ class GoogleParser(object):
23692369
# Note that a filetype tag (e.g. PDF) is now pretty
23702370
# damn hard to parse with confidence (that it'll
23712371
# survive the slighest further change), so we don't.
2372-
2372+
23732373
# As of January 15th 2021, the html class is not rc anymore, it's tF2Cxc.
23742374
# This approach is not very resilient to changes by Google, but it works for now.
23752375
# title_node, details_node, *_ = div_g.select_all('div.rc > div')

googler.1

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
.TH "GOOGLER" "1" "10 Oct 2020" "Version 4.3.1" "User Commands"
1+
.TH "GOOGLER" "1" "21 Jan 2021" "Version 4.3.2" "User Commands"
22
.SH NAME
33
googler \- Google from the command-line
44
.SH SYNOPSIS

info.json

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
2-
"epoch": "20201001",
3-
"tracking_issue": 372,
2+
"epoch": "20210115",
3+
"tracking_issue": 392,
44
"fixed_on_master": true,
5-
"fixed_in_release": "v4.3.1"
5+
"fixed_in_release": "v4.3.2"
66
}

0 commit comments

Comments
 (0)