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.0
Browse files Browse the repository at this point in the history
  • Loading branch information
jarun committed Nov 26, 2019
1 parent cddd9d3 commit 3987b74
Show file tree
Hide file tree
Showing 6 changed files with 29 additions and 13 deletions.
2 changes: 1 addition & 1 deletion .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ jobs:
# Use latest installed python3 from pyenv
export PYENV_VERSION="$(pyenv versions | grep -Po '\b3\.\d+\.\d+' | tail -1)"
pip install packagecore
packagecore -o ./dist/ ${CIRCLE_TAG#v}
packagecore -c tests/packagecore/packagecore.yaml -o ./dist/ ${CIRCLE_TAG#v}
- run:
name: "publish to GitHub"
command: |
Expand Down
9 changes: 9 additions & 0 deletions CHANGELOG
Original file line number Diff line number Diff line change
@@ -1,3 +1,12 @@
googler 4.0
2019-11-27

What's in?
- Switch to modern UA and fix parser to handle new result format
- Text-wrapping

-------------------------------------------------------------------------------

googler 3.9
2019-05-30

Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -116,7 +116,7 @@ before installation.

#### Release packages

Packages for Arch Linux, CentOS, Debian, Fedora, openSUSE Leap and Ubuntu are available with the [latest stable release](https://github.com/jarun/googler/releases/latest).
Packages for Arch Linux, CentOS, Debian, Fedora, openSUSE and Ubuntu are available with the [latest stable release](https://github.com/jarun/googler/releases/latest).

#### From source

Expand Down Expand Up @@ -144,7 +144,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/v3.9/googler && sudo chmod +x /usr/local/bin/googler
$ sudo curl -o /usr/local/bin/googler https://raw.githubusercontent.com/jarun/googler/v4.0/googler && sudo chmod +x /usr/local/bin/googler

You could then let googler upgrade itself by running

Expand Down
2 changes: 1 addition & 1 deletion googler
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ except ValueError:

# Constants

_VERSION_ = '3.9'
_VERSION_ = '4.0'

COLORMAP = {k: '\x1b[%sm' % v for k, v in {
'a': '30', 'b': '31', 'c': '32', 'd': '33',
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" "30 May 2019" "Version 3.9" "User Commands"
.TH "GOOGLER" "1" "27 Nov 2019" "Version 4.0" "User Commands"
.SH NAME
googler \- Google from the command-line
.SH SYNOPSIS
Expand Down
23 changes: 15 additions & 8 deletions packagecore.yaml → tests/packagecore/packagecore.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -13,14 +13,6 @@ packages:
deps:
- python
container: "archlinux/base"
centos7.4:
builddeps:
- make
deps:
- python
commands:
pre:
- yum install epel-release
centos7.5:
builddeps:
- make
Expand All @@ -41,6 +33,11 @@ packages:
- make
deps:
- python3
debian10:
builddeps:
- make
deps:
- python3
fedora25:
builddeps:
- make
Expand Down Expand Up @@ -71,11 +68,21 @@ packages:
- make
deps:
- python3
fedora31:
builddeps:
- make
deps:
- python3
opensuse42.3:
builddeps:
- make
deps:
- python3
opensuse15.0:
builddeps:
- make
deps:
- python3
ubuntu14.04:
builddeps:
- make
Expand Down

10 comments on commit 3987b74

@jarun
Copy link
Owner Author

@jarun jarun commented on 3987b74 Nov 26, 2019

Choose a reason for hiding this comment

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

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

@jarun
Copy link
Owner Author

@jarun jarun commented on 3987b74 Nov 26, 2019

Choose a reason for hiding this comment

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

@zmwangx I have raised the PR for Homebrew. Thanks for fixing the parser!

@pabloariasal
Copy link

@pabloariasal pabloariasal commented on 3987b74 Nov 26, 2019 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 3987b74 Nov 27, 2019

Choose a reason for hiding this comment

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

Thank you!

@szlin
Copy link
Collaborator

@szlin szlin commented on 3987b74 Nov 27, 2019

Choose a reason for hiding this comment

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

@jarun New version of googler has been uploaded into Debian archive.

@jarun
Copy link
Owner Author

@jarun jarun commented on 3987b74 Nov 27, 2019

Choose a reason for hiding this comment

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

Thanks Lin!

@dilawar
Copy link
Contributor

@dilawar dilawar commented on 3987b74 Nov 28, 2019 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 3987b74 Nov 28, 2019

Choose a reason for hiding this comment

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

Thank you!

@eclipseo
Copy link

Choose a reason for hiding this comment

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

Hey sorry for the delay, updated in F30-F32, and I'm planning to add it to EPEL8.

@jarun
Copy link
Owner Author

@jarun jarun commented on 3987b74 Dec 3, 2019

Choose a reason for hiding this comment

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

No problem! And thank you!

Please sign in to comment.