Skip to content
Snippets Groups Projects
Commit de82b057 authored by Florian Spreckelsen's avatar Florian Spreckelsen
Browse files

REL: Prepare release of 0.17.0

parent c9d6b270
No related branches found
No related tags found
1 merge request!175BUG: Request responses without the "Set-Cookie" header no longer overwrite the...
Pipeline #59942 passed
This commit is part of merge request !175. Comments created here will be created in the context of that merge request.
...@@ -5,20 +5,26 @@ All notable changes to this project will be documented in this file. ...@@ -5,20 +5,26 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/), The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
## [Unreleased] ## ## [0.17.0] - 2025-01-14 ##
### Added ### ### Added ###
* New setup extra `test` which installs the dependencies for testing. * New setup extra `test` which installs the dependencies for testing.
* The Container class has a new member function `filter` which is based o `_filter_entity_list`. * The Container class has a new member function `filter_by_identity`
which is based on `_filter_entity_list`.
* The `Entity` properties `_cuid` and `_flags` are now available for read-only access * The `Entity` properties `_cuid` and `_flags` are now available for read-only access
as `cuid` and `flags`, respectively. as `cuid` and `flags`, respectively.
### Changed ### ### Changed ###
* Renamed the `filter` function of Container, ParentList and PropertyList to `filter_by_identity`.
* Renamed the `filter` function of Container, ParentList and
PropertyList to `filter_by_identity`.
### Deprecated ### ### Deprecated ###
* `ParentList.filter` and `PropertyList.filter` functions, use
`filter_by_identity` instead.
### Removed ### ### Removed ###
* Support for Python 3.8 * Support for Python 3.8
...@@ -42,10 +48,6 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ...@@ -42,10 +48,6 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
* [#127](https://gitlab.com/linkahead/linkahead-pylib/-/issues/127) * [#127](https://gitlab.com/linkahead/linkahead-pylib/-/issues/127)
pylinkahead.ini now supports None and tuples as values for the `timeout` keyword pylinkahead.ini now supports None and tuples as values for the `timeout` keyword
### Security ###
### Documentation ###
## [0.16.0] - 2024-11-13 ## ## [0.16.0] - 2024-11-13 ##
### Added ### ### Added ###
......
...@@ -20,6 +20,6 @@ authors: ...@@ -20,6 +20,6 @@ authors:
given-names: Stefan given-names: Stefan
orcid: https://orcid.org/0000-0001-7214-8125 orcid: https://orcid.org/0000-0001-7214-8125
title: CaosDB - Pylib title: CaosDB - Pylib
version: 0.16.0 version: 0.17.0
doi: 10.3390/data4020083 doi: 10.3390/data4020083
date-released: 2024-11-13 date-released: 2025-01-14
...@@ -47,7 +47,7 @@ However, you can also create an issue for it. ...@@ -47,7 +47,7 @@ However, you can also create an issue for it.
* Copyright (C) 2018 Research Group Biomedical Physics, Max Planck Institute * Copyright (C) 2018 Research Group Biomedical Physics, Max Planck Institute
for Dynamics and Self-Organization Göttingen. for Dynamics and Self-Organization Göttingen.
* Copyright (C) 2020-2022 Indiscale GmbH <info@indiscale.com> * Copyright (C) 2020-2025 Indiscale GmbH <info@indiscale.com>
All files in this repository are licensed under a [GNU Affero General Public All files in this repository are licensed under a [GNU Affero General Public
License](LICENCE.md) (version 3 or later). License](LICENCE.md) (version 3 or later).
...@@ -46,10 +46,10 @@ from setuptools import find_packages, setup ...@@ -46,10 +46,10 @@ from setuptools import find_packages, setup
# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. # OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
######################################################################## ########################################################################
ISRELEASED = False ISRELEASED = True
MAJOR = 0 MAJOR = 0
MINOR = 16 MINOR = 17
MICRO = 1 MICRO = 0
# Do not tag as pre-release until this commit # Do not tag as pre-release until this commit
# https://github.com/pypa/packaging/pull/515 # https://github.com/pypa/packaging/pull/515
# has made it into a release. Probably we should wait for pypa/packaging>=21.4 # has made it into a release. Probably we should wait for pypa/packaging>=21.4
......
...@@ -29,10 +29,10 @@ copyright = '2024, IndiScale GmbH' ...@@ -29,10 +29,10 @@ copyright = '2024, IndiScale GmbH'
author = 'Daniel Hornung' author = 'Daniel Hornung'
# The short X.Y version # The short X.Y version
version = '0.16.1' version = '0.17.0'
# The full version, including alpha/beta/rc tags # The full version, including alpha/beta/rc tags
# release = '0.5.2-rc2' # release = '0.5.2-rc2'
release = '0.16.1-dev' release = '0.17.0'
# -- General configuration --------------------------------------------------- # -- General configuration ---------------------------------------------------
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment