From: Oleg Broytman Date: Sun, 30 Apr 2017 21:45:10 +0000 (+0300) Subject: Version 0.2.1: Convert README to reST X-Git-Tag: 0.2.1^0 X-Git-Url: https://git.phdru.name/?p=sqlconvert.git;a=commitdiff_plain;h=71665d24bf836911ce782d7438e67a5163a2b94b Version 0.2.1: Convert README to reST --- diff --git a/README.txt b/README.rst similarity index 57% rename from README.txt rename to README.rst index 5cb1bbf..5092e8d 100644 --- a/README.txt +++ b/README.rst @@ -1,5 +1,9 @@ -Broytman SQL converter, Copyright (C) 2016-2017 PhiloSoft Design. +SQL converter. + Author: Oleg Broytman . + +Copyright (C) 2016-2017 PhiloSoft Design. + License: GPL. sqlconvert is a library to perform SQL conversions. It uses sqlparse to @@ -13,8 +17,8 @@ The first goal is to implement mysql2sql, a script intended primarily to convert mysqldump output (especially with extended INSERT syntax) to standard SQL to load at least to PostgreSQL or SQLite. -Home Page: http://phdru.name/Software/Python/sqlconvert/ -Documentation: http://phdru.name/Software/Python/sqlconvert/docs/ -Git repo: http://git.phdru.name/sqlconvert.git/ -GitHub repo: https://github.com/phdru/sqlconvert -Issue tracker: https://github.com/phdru/sqlconvert/issues +| Home Page: http://phdru.name/Software/Python/sqlconvert/ +| Documentation: http://phdru.name/Software/Python/sqlconvert/docs/ +| Git repo: http://git.phdru.name/sqlconvert.git/ +| GitHub repo: https://github.com/phdru/sqlconvert +| Issue tracker: https://github.com/phdru/sqlconvert/issues diff --git a/docs/news.rst b/docs/news.rst index ba02e45..cc1cca0 100644 --- a/docs/news.rst +++ b/docs/news.rst @@ -1,6 +1,11 @@ News ==== +Version 0.2.1 (2017-05-01) +-------------------------- + +* Convert README to reST. + Version 0.2.0 (2017-04-30) -------------------------- diff --git a/setup.py b/setup.py index a47b42a..a73d596 100755 --- a/setup.py +++ b/setup.py @@ -26,7 +26,7 @@ if is_setuptools: setup(name='sqlconvert', version=__version__, description='Broytman sqlconvert', - long_description=open('README.txt', 'rU').read(), + long_description=open('README.rst', 'rU').read(), author='Oleg Broytman', author_email='phd@phdru.name', url='http://phdru.name/Software/Python/', diff --git a/sqlconvert/__version__.py b/sqlconvert/__version__.py index 7fd229a..fc79d63 100644 --- a/sqlconvert/__version__.py +++ b/sqlconvert/__version__.py @@ -1 +1 @@ -__version__ = '0.2.0' +__version__ = '0.2.1'