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

Commit

Permalink
Prepare for release v4.3.2
Browse files Browse the repository at this point in the history
  • Loading branch information
jarun committed Jan 21, 2021
1 parent 10d945d commit 40668c0
Show file tree
Hide file tree
Showing 5 changed files with 16 additions and 8 deletions.
8 changes: 8 additions & 0 deletions CHANGELOG
Original file line number Diff line number Diff line change
@@ -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

Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down
6 changes: 3 additions & 3 deletions googler
Original file line number Diff line number Diff line change
Expand Up @@ -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',
Expand Down Expand Up @@ -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')
Expand Down
2 changes: 1 addition & 1 deletion googler.1
Original file line number Diff line number Diff line change
@@ -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
Expand Down
6 changes: 3 additions & 3 deletions info.json
Original file line number Diff line number Diff line change
@@ -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"
}

5 comments on commit 40668c0

@jarun
Copy link
Owner Author

@jarun jarun commented on 40668c0 Jan 21, 2021

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@dilawar, @eclipseo, @pabloariasal, @szlin, @zmwangx googler v4.3.2 is released!

@szlin
Copy link
Collaborator

@szlin szlin commented on 40668c0 Jan 22, 2021

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@jarun The new version of googler has been uploaded!

@jarun
Copy link
Owner Author

@jarun jarun commented on 40668c0 Jan 22, 2021

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Thank you!

@pabloariasal
Copy link

@pabloariasal pabloariasal commented on 40668c0 Jan 23, 2021 via email

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@jarun
Copy link
Owner Author

@jarun jarun commented on 40668c0 Jan 23, 2021

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Thank you!

Please sign in to comment.