Skip to content

Commit

Permalink
Version bump
Browse files Browse the repository at this point in the history
  • Loading branch information
gautamkrishnar committed May 18, 2019
1 parent 386e266 commit 58df40c
Show file tree
Hide file tree
Showing 4 changed files with 197 additions and 184 deletions.
298 changes: 152 additions & 146 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
@@ -1,146 +1,152 @@
SoCLI Changelog
================

Release 3.6
---------------------------

* Implemented usage of Google search instead of stackoverflow's default search
* Added code to test captcha checks
* Many bugs fixed


Release 3.5
---------------------------

* Added code to prevent unwanted captcha checks
* Made SoCLI more interactive
* Minor bugfixes

Release 3.4
---------------------------

* Bugfix release

Release 3.3
---------------------------

* Minor bugfix

Release 3.2
---------------------------

* Added user profiles

Release 3.1
---------------------------

* Bugfix release

Release 3.0
---------------------------

* Fixed almost all windows encoding and color bugs

Release 2.9
---------------------------

* Many minor bug fixes

Release 2.8
---------------------------

* Fixed Windows encoding problem

Release 2.7
---------------------------

* Fixed some minor bugs

Release 2.6
---------------------------

* Fixed some minor typos
* Added windows binary release

Release 2.5
---------------------------

* Fixed some bugs due to latest windows cmd update
* Added sorting of question based on number of votes

Release 2.4
---------------------------

* Added StackOverflow attribution

Release 2.3
---------------------------

* Fixed minor bugs

Release 2.2
---------------------------

* Added tag based search

Release 2.1
---------------------------

* Fixed encoding bug

Release 2.0
---------------------------

* Fixed bugs on python 2

Release 1.9
---------------------------

* Added URL support to answers
* Added debugger module

Release 1.8
---------------------------

* Added support to python 2

Release 1.7
---------------------------

* Added new question feature
* Fixed windows color problem on windows 10

Release 1.6
---------------------------

* Intelligent colors

Release 1.5
---------------------------

* Added open in browser feature

Release 1.4
---------------------------

* Added interactive mode feature

Release 1.3
---------------------------

* Added colors

Release 1.2
---------------------------

* First stable release on PyPI

Release 1.1
---------------------------

* Pre Release

Release 1.0
---------------------------

* Beta version
SoCLI Changelog
================

Release 3.7
---------------------------

* Fixed functional bug


Release 3.6
---------------------------

* Implemented usage of Google search instead of stackoverflow's default search
* Added code to test captcha checks
* Many bugs fixed


Release 3.5
---------------------------

* Added code to prevent unwanted captcha checks
* Made SoCLI more interactive
* Minor bugfixes

Release 3.4
---------------------------

* Bugfix release

Release 3.3
---------------------------

* Minor bugfix

Release 3.2
---------------------------

* Added user profiles

Release 3.1
---------------------------

* Bugfix release

Release 3.0
---------------------------

* Fixed almost all windows encoding and color bugs

Release 2.9
---------------------------

* Many minor bug fixes

Release 2.8
---------------------------

* Fixed Windows encoding problem

Release 2.7
---------------------------

* Fixed some minor bugs

Release 2.6
---------------------------

* Fixed some minor typos
* Added windows binary release

Release 2.5
---------------------------

* Fixed some bugs due to latest windows cmd update
* Added sorting of question based on number of votes

Release 2.4
---------------------------

* Added StackOverflow attribution

Release 2.3
---------------------------

* Fixed minor bugs

Release 2.2
---------------------------

* Added tag based search

Release 2.1
---------------------------

* Fixed encoding bug

Release 2.0
---------------------------

* Fixed bugs on python 2

Release 1.9
---------------------------

* Added URL support to answers
* Added debugger module

Release 1.8
---------------------------

* Added support to python 2

Release 1.7
---------------------------

* Added new question feature
* Fixed windows color problem on windows 10

Release 1.6
---------------------------

* Intelligent colors

Release 1.5
---------------------------

* Added open in browser feature

Release 1.4
---------------------------

* Added interactive mode feature

Release 1.3
---------------------------

* Added colors

Release 1.2
---------------------------

* First stable release on PyPI

Release 1.1
---------------------------

* Pre Release

Release 1.0
---------------------------

* Beta version
16 changes: 11 additions & 5 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
BeautifulSoup4
requests
colorama
Py-StackExchange
urwid
beautifulsoup4==4.7.1
certifi==2019.3.9
chardet==3.0.4
colorama==0.4.1
idna==2.8
py-stackexchange==2.2.7
requests==2.22.0
six==1.12.0
soupsieve==1.9.1
urllib3==1.25.2
urwid==2.0.1
64 changes: 32 additions & 32 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,32 +1,32 @@
# -*- coding: utf-8 -*-
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
from codecs import open
from sys import exit,version
import sys
if version < '1.0.0':
print("Python 1 is not supported...")
sys.exit(1)

with open('README.rst') as f:
longd = f.read()

setup(
name='socli',
include_package_data=True,
packages=["socli"],
data_files=[('socli', ['socli/user_agents.txt'])],
entry_points = {"console_scripts": ['socli = socli.socli:main']},
install_requires=['BeautifulSoup4','requests','colorama','Py-stackExchange', 'urwid'],
requires=['BeautifulSoup4','requests','colorama','PyStackExchange', 'urwid'],
version='3.6',
url='http://www.github.com/gautamkrishnar/socli',
keywords="stack overflow cli",
license='BSD',
author='Gautam krishna R',
author_email='r.gautamkrishna@gmail.com',
description='Stack overflow commnand line interface. SoCLI allows you to search and browse stack overflow from the terminal.',
long_description="\n\n"+longd
)
# -*- coding: utf-8 -*-
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
from codecs import open
from sys import exit,version
import sys
if version < '1.0.0':
print("Python 1 is not supported...")
sys.exit(1)

with open('README.rst') as f:
longd = f.read()

setup(
name='socli',
include_package_data=True,
packages=["socli"],
data_files=[('socli', ['socli/user_agents.txt'])],
entry_points = {"console_scripts": ['socli = socli.socli:main']},
install_requires=['BeautifulSoup4','requests','colorama','Py-stackExchange', 'urwid'],
requires=['BeautifulSoup4','requests','colorama','PyStackExchange', 'urwid'],
version='3.7',
url='http://www.github.com/gautamkrishnar/socli',
keywords="stack overflow cli",
license='BSD',
author='Gautam krishna R',
author_email='r.gautamkrishna@gmail.com',
description='Stack overflow commnand line interface. SoCLI allows you to search and browse stack overflow from the terminal.',
long_description="\n\n"+longd
)
3 changes: 2 additions & 1 deletion socli/socli.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@
from bs4 import BeautifulSoup
import random
import re
import urllib3

# Global vars:
DEBUG = False # Set True for enabling debugging
Expand All @@ -31,7 +32,7 @@
google_search = True # Uses google search. Enabled by default.
google_search_url = "https://www.google.com/search?q=site:stackoverflow.com+" #Google search query URL
# Suppressing InsecureRequestWarning and many others
requests.packages.urllib3.disable_warnings()
urllib3.disable_warnings()

### To support python 2:
if sys.version < '3.0.0':
Expand Down

0 comments on commit 58df40c

Please sign in to comment.