Skip to content

Commit 876f178

Browse files
committed
Bump to version 1.5
1 parent 31eb209 commit 876f178

File tree

3 files changed

+11
-5
lines changed

3 files changed

+11
-5
lines changed

LICENSE

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
Copyright (c) 2014-2015 Daniel Saier
1+
Copyright (c) 2014-2016 Daniel Saier
22

33
Permission is hereby granted, free of charge, to any person obtaining a copy
44
of this software and associated documentation files (the "Software"), to deal

README.md

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,15 @@
11
# python-nuclos
22

3-
A Python library for the REST API of [Nuclos](http://www.nuclos.de/). You can find the documentation [here](http://saierd.github.io/python-nuclos/).
3+
A Python library for the REST API of [Nuclos](http://www.nuclos.de/).
4+
5+
[You can find the documentation here](http://saierd.github.io/python-nuclos/) (German only because the Nuclos community is mostly German).
46

57
| Version | Compatible Nuclos versions | Download |
68
| --------------------------------------------------------------- | -------------------------- | -------- |
7-
| [1.4](https://github.com/saierd/python-nuclos/releases/tag/1.4) | > 4.5 | [zip](https://github.com/saierd/python-nuclos/releases/download/1.4/python-nuclos-1.4.zip) |
9+
| [1.5](https://github.com/saierd/python-nuclos/releases/tag/1.5) | >= 4.7.2 | [zip](https://github.com/saierd/python-nuclos/releases/download/1.5/python-nuclos-1.5.zip) |
10+
| [1.4](https://github.com/saierd/python-nuclos/releases/tag/1.4) | 4.5.* | [zip](https://github.com/saierd/python-nuclos/releases/download/1.4/python-nuclos-1.4.zip) |
811
| [1.0](https://github.com/saierd/python-nuclos/releases/tag/1.0) | 4.4.0 | [zip](https://github.com/saierd/python-nuclos/releases/download/1.0/python-nuclos-1.0.zip) |
912

13+
Feel free to try the library with other versions. It was not tested, though.
14+
1015
License: [MIT](https://github.com/saierd/python-nuclos/blob/master/LICENSE)

nuclos.py

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
"""
2-
Copyright (c) 2014-2015 Daniel Saier
2+
Copyright (c) 2014-2016 Daniel Saier
33
44
This project is licensed under the terms of the MIT license. See the LICENSE file.
55
"""
6-
__version__ = "1.4"
6+
__version__ = "1.5"
77

88
# TODO: Support SSL.
99

@@ -560,6 +560,7 @@ def list(self, search=None, offset=0, limit=0, sort=None, where=None, fetch_all=
560560
parameters["offset"] = offset
561561
current_offset = offset
562562

563+
# TODO: Allow multiple sort arguments and decreasing sorts.
563564
if sort is not None:
564565
# Allow to give a name of an attribute for sorting.
565566
if isinstance(sort, str):

0 commit comments

Comments
 (0)