Skip to content

Commit 8edd32d

Browse files
author
Lucas Weyne Barros Ferreira
committed
Merge branch 'hotfix/1.0.2'
2 parents f342e64 + 0dbcf42 commit 8edd32d

File tree

2 files changed

+7
-10
lines changed

2 files changed

+7
-10
lines changed

README.md

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -76,8 +76,8 @@ If you need to access the values of `db_adapter` settings in your project, you s
7676
```python
7777
from db_adapter.config import settings
7878

79-
print settings.SCHEMA
80-
print settings.PREFIX['TABLE']
79+
print(settings.SCHEMA)
80+
print(settings.PREFIX['TABLE'])
8181
```
8282

8383
### Global settings
@@ -128,4 +128,5 @@ END;
128128
## Release Notes
129129

130130
- 1.0.0 - 16/04/2018 - First release
131-
- 1.0.1 - 16/04/2018 - Rename package and fix setup issues
131+
- 1.0.1 - 16/04/2018 - Rename package and fix setup issues
132+
- 1.0.2 - 17/04/2018 - Fix documentation preview

setup.py

Lines changed: 3 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -3,24 +3,20 @@
33
"""
44
from setuptools import setup, find_packages
55
from codecs import open
6-
from os import path
76

87

9-
here = path.abspath(path.dirname(__file__))
10-
11-
12-
with open(path.join(here, 'README.md'), encoding='utf-8') as f:
8+
with open('README.md') as f:
139
long_description = f.read()
1410

1511

1612
setup(
1713
name='django-db-adapter',
18-
version='1.0.1',
14+
version='1.0.2',
1915
description='A configurable database backend for Oracle',
2016
long_description=long_description,
2117
long_description_content_type='text/markdown',
2218
url='https://github.com/weynelucas/django-db-adapter/',
23-
download_url="https://github.com/weynelucas/django-db-adapter/archive/1.0.1.tar.gz",
19+
download_url="https://github.com/weynelucas/django-db-adapter/archive/1.0.2.tar.gz",
2420
author='Lucas Weyne',
2521
author_email='weynelucas@gmail.com',
2622
classifiers=[

0 commit comments

Comments
 (0)