Skip to content

Commit 7e1d7d1

Browse files
committed
Prepare release 0.1.13
1 parent aeb9a9a commit 7e1d7d1

File tree

2 files changed

+21
-1
lines changed

2 files changed

+21
-1
lines changed

CHANGELOG.md

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

3+
### 0.1.13
4+
5+
Date: 2024-12-11
6+
7+
PyPI release page: https://pypi.org/project/dspace-rest-client/0.1.13/
8+
9+
**Changes**
10+
11+
1. Update requests and pysolr dependencies and improve setup.py (thanks @alanorth) https://github.com/the-library-code/dspace-rest-python/pull/24
12+
2. Add auto-paginating `get_*_iter` methods for most `get_*` methods (thanks @dpk) https://github.com/the-library-code/dspace-rest-python/pull/27
13+
3. Improve version number maintenance https://github.com/the-library-code/dspace-rest-python/pull/30
14+
4. New `create_item_version` method (thanks @soaringjupiter) https://github.com/the-library-code/dspace-rest-python/pull/31
15+
5. Allow `embed=['...', '...']` parameter in most methods that return objects, to allow embedded HAL resources https://github.com/the-library-code/dspace-rest-python/pull/20
16+
6. Extend `search_objects[_iter]` to accept a configuration parameter https://github.com/the-library-code/dspace-rest-python/pull/32
17+
7. Integrate pylint scaffolding (thanks @sszepe and @mdwRepository) https://github.com/the-library-code/dspace-rest-python/pull/37
18+
8. New `resolve_identifier_to_dso` method https://github.com/the-library-code/dspace-rest-python/pull/39
19+
9. Small pydoc improvements
20+
10. Added new example usage to `example.py`
21+
322
### 0.1.12
423

524
Date: 2024-08-06
@@ -10,6 +29,7 @@ PyPI release page: https://pypi.org/project/dspace-rest-client/0.1.12/
1029

1130
1. Initialise search result objects as `SimpleDSpaceObject` rather than base `DSpaceObject` class (thanks to @JemmaPilcher)
1231
2. Introduce / tidy new `SearchResult` model as work towards https://github.com/the-library-code/dspace-rest-python/issues/17
32+
3. Fix `get_items` method parameters (thanks @ckubgi) https://github.com/the-library-code/dspace-rest-python/pull/21
1333

1434
### 0.1.11
1535

dspace_rest_client/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
from . import *
2-
__version__ = '0.1.12'
2+
__version__ = '0.1.13'

0 commit comments

Comments
 (0)