From 40668c07fd302c1744cbdfa1035480fd7623a64b Mon Sep 17 00:00:00 2001 From: Arun Prakash Jana Date: Thu, 21 Jan 2021 13:49:59 +0530 Subject: [PATCH] Prepare for release v4.3.2 --- CHANGELOG | 8 ++++++++ README.md | 2 +- googler | 6 +++--- googler.1 | 2 +- info.json | 6 +++--- 5 files changed, 16 insertions(+), 8 deletions(-) diff --git a/CHANGELOG b/CHANGELOG index 82dac5e..888a95f 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -1,3 +1,11 @@ +googler 4.3.2 +2021-01-21 + +- Fix html class of result nodes (#393, fixes #392) +- Do not sabotage stdin of url_handler (#386) + +------------------------------------------------------------------------------- + googler 4.3.1 2020-10-10 diff --git a/README.md b/README.md index abd50df..bdbf953 100644 --- a/README.md +++ b/README.md @@ -227,7 +227,7 @@ To remove `googler` and associated docs, run To install the latest stable version, run - $ sudo curl -o /usr/local/bin/googler https://raw.githubusercontent.com/jarun/googler/v4.3.1/googler && sudo chmod +x /usr/local/bin/googler + $ sudo curl -o /usr/local/bin/googler https://raw.githubusercontent.com/jarun/googler/v4.3.2/googler && sudo chmod +x /usr/local/bin/googler You could then let googler upgrade itself by running diff --git a/googler b/googler index 112ae92..9b31868 100755 --- a/googler +++ b/googler @@ -90,8 +90,8 @@ except ValueError: # Constants -_VERSION_ = '4.3.1' -_EPOCH_ = '20201001' +_VERSION_ = '4.3.2' +_EPOCH_ = '20210115' COLORMAP = {k: '\x1b[%sm' % v for k, v in { 'a': '30', 'b': '31', 'c': '32', 'd': '33', @@ -2369,7 +2369,7 @@ class GoogleParser(object): # Note that a filetype tag (e.g. PDF) is now pretty # damn hard to parse with confidence (that it'll # survive the slighest further change), so we don't. - + # As of January 15th 2021, the html class is not rc anymore, it's tF2Cxc. # This approach is not very resilient to changes by Google, but it works for now. # title_node, details_node, *_ = div_g.select_all('div.rc > div') diff --git a/googler.1 b/googler.1 index 2516bc3..922edd9 100644 --- a/googler.1 +++ b/googler.1 @@ -1,4 +1,4 @@ -.TH "GOOGLER" "1" "10 Oct 2020" "Version 4.3.1" "User Commands" +.TH "GOOGLER" "1" "21 Jan 2021" "Version 4.3.2" "User Commands" .SH NAME googler \- Google from the command-line .SH SYNOPSIS diff --git a/info.json b/info.json index e055478..7d28abc 100644 --- a/info.json +++ b/info.json @@ -1,6 +1,6 @@ { - "epoch": "20201001", - "tracking_issue": 372, + "epoch": "20210115", + "tracking_issue": 392, "fixed_on_master": true, - "fixed_in_release": "v4.3.1" + "fixed_in_release": "v4.3.2" }