Skip to content

Commit 66fe4ca

Browse files
committed
Version 2.0.3.
1 parent a71b2b8 commit 66fe4ca

3 files changed

Lines changed: 8 additions & 2 deletions

File tree

CHANGES.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
11
# SQLAlchemy-JSONAPI Changelog
22

3+
## 2.0.3
4+
5+
*2015-09-17*
6+
7+
* Merged #7 by @angelosarto. Fixed type of related items returned in relationships.
8+
39
## 2.0.2
410

511
*2015-09-16*

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
requirements.append('enum34')
2020

2121
setup(name='SQLAlchemy-JSONAPI',
22-
version='2.0.2',
22+
version='2.0.3',
2323
url='http://github.com/coltonprovias/sqlalchemy-jsonapi',
2424
license='MIT',
2525
author='Colton J. Provias',

sqlalchemy_jsonapi/serializer.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -118,7 +118,7 @@ def __init__(self):
118118
self.status_code = 200
119119
self.data = {
120120
'jsonapi': {'version': '1.0'},
121-
'meta': {'sqlalchemy_jsonapi_version': '2.0.0'}
121+
'meta': {'sqlalchemy_jsonapi_version': '2.0.3'}
122122
}
123123

124124

0 commit comments

Comments
 (0)