We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a71b2b8 commit 66fe4caCopy full SHA for 66fe4ca
3 files changed
CHANGES.md
@@ -1,5 +1,11 @@
1
# SQLAlchemy-JSONAPI Changelog
2
3
+## 2.0.3
4
+
5
+*2015-09-17*
6
7
+* Merged #7 by @angelosarto. Fixed type of related items returned in relationships.
8
9
## 2.0.2
10
11
*2015-09-16*
setup.py
@@ -19,7 +19,7 @@
19
requirements.append('enum34')
20
21
setup(name='SQLAlchemy-JSONAPI',
22
- version='2.0.2',
+ version='2.0.3',
23
url='http://github.com/coltonprovias/sqlalchemy-jsonapi',
24
license='MIT',
25
author='Colton J. Provias',
sqlalchemy_jsonapi/serializer.py
@@ -118,7 +118,7 @@ def __init__(self):
118
self.status_code = 200
119
self.data = {
120
'jsonapi': {'version': '1.0'},
121
- 'meta': {'sqlalchemy_jsonapi_version': '2.0.0'}
+ 'meta': {'sqlalchemy_jsonapi_version': '2.0.3'}
122
}
123
124
0 commit comments