Skip to content

Commit

Permalink
Version 2.0 Changelog and version update for files.
Browse files Browse the repository at this point in the history
  • Loading branch information
mastizada committed Apr 2, 2017
1 parent c912246 commit 46b3aae
Show file tree
Hide file tree
Showing 5 changed files with 17 additions and 10 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -50,3 +50,9 @@
* Added example for execution of custom queries
* Added Link for available connection parameters
* Flake8 improvements (PEP8)

** v 2.0 **:

* Added SUM function
* Added support for Postgresql
* Minor fixes
14 changes: 7 additions & 7 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -13,11 +13,11 @@ dbConnect: Database for Humans
WHY?
====

dbConnect was made as little module to be used in small projects
dbConnect was made as a little module to be used in small projects
that need to do some interactions with MySQL or PostgreSQL databases.

It's just a big time saver for developers and helps to keep your
code clean and readable.
It's just a big time saver for developers specially for making data analyzing and data scraping
and it helps to keep your code clean and readable by using python-like structure.


Installation
Expand Down Expand Up @@ -53,7 +53,7 @@ from source code:
$ git clone git@github.com:mastizada/dbConnect.git
$ cd dbConnect
$ sudo pip install -r requirements.txt --allow-external mysql-connector-python
$ # install required module for database
$ sudo python setup.py install
Usage
Expand All @@ -70,7 +70,7 @@ Documentation
=============

- Docs: http://dbconnect.readthedocs.org/
- Another Docs: https://pythonhosted.org/dbConnect/
- Alternate Docs: https://pythonhosted.org/dbConnect/
- Check generated documentation using:

.. code-block:: bash
Expand All @@ -81,9 +81,9 @@ Documentation

.. code-block:: bash
$ pydoc3 -p 1994
$ pydoc3 -p 8000
and open localhost:1994/ in browser
and open http://localhost:8000/ in browser

Enjoy
=====
2 changes: 1 addition & 1 deletion dbConnect/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

__description__ = 'Database for Humans'
__author__ = "Emin Mastizada <emin@linux.com>"
__version__ = '1.6.0'
__version__ = '2.0'
__license__ = "MPL 2.0"
__help__ = """Database for Humans"""

Expand Down
2 changes: 1 addition & 1 deletion docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
import sys
import os
import shlex
__version__ = '1.6.0'
__version__ = '2.0'

sys.path.insert(0, os.path.abspath('../dbConnect'))

Expand Down
3 changes: 2 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

setup(
name='dbConnect',
version='1.6.0',
version='2.0',
description='Database for Humans',
long_description=readme,
keywords='dbConnect, mysql, postgresql, postgres, simple, easy, light, module',
Expand All @@ -30,6 +30,7 @@
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: Implementation :: CPython',
'Programming Language :: Python :: Implementation :: PyPy',
'Topic :: Database :: Front-Ends',
Expand Down

0 comments on commit 46b3aae

Please sign in to comment.