diff --git a/CHANGELOG.md b/CHANGELOG.md index 3b55a8fedf6b8ffc8907728fae4fa96da07e810d..ecf7350b87b754b3f5a0a7c129aec8e72be5bebd 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,7 +5,7 @@ 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/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). -## [Unreleased] ## +## [0.10.0] - 2024-11-13 ## ### Added ### @@ -39,8 +39,6 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 case of `debug=False`. The previous behavior can be restored by calling `crawler_main` with `sss_max_log_level=logging.DEBUG`. -### Deprecated ### - ### Removed ### * Support for Python 3.8 (end of life) @@ -53,8 +51,6 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 Too verbose server-side scripting logs that could lead to high disk usage. -### Security ### - ### Documentation ### - Tutorial on crawling a simple CSV file diff --git a/CITATION.cff b/CITATION.cff index 99756999f4a42818510fffbe1d02e1bf4396540b..fc3a2ee634f1896a7f8145fdc3a5f965e3c91e47 100644 --- a/CITATION.cff +++ b/CITATION.cff @@ -17,6 +17,6 @@ authors: given-names: Alexander orcid: https://orcid.org/0000-0003-4124-9649 title: CaosDB - Crawler -version: 0.9.1 +version: 0.10.0 doi: 10.3390/data9020024 -date-released: 2024-09-26 \ No newline at end of file +date-released: 2024-11-13 \ No newline at end of file diff --git a/setup.cfg b/setup.cfg index 4e2056bdb23da2ba734a1aeda60cfc5e6a6f3e64..29b576ed789d5e77ec71eb372a8c9d98b3189ecd 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,6 +1,6 @@ [metadata] name = caoscrawler -version = 0.9.2 +version = 0.10.0 author = Alexander Schlemmer author_email = alexander.schlemmer@ds.mpg.de description = A new crawler for LinkAhead @@ -21,7 +21,7 @@ python_requires = >=3.9 install_requires = caosadvancedtools >= 0.7.0 importlib-resources - linkahead > 0.13.2 + linkahead >= 0.16.0 odfpy #make optional packaging pandas diff --git a/src/doc/conf.py b/src/doc/conf.py index 54b2bed270d7f7b72d2f17e33572fbbaf69d8c28..5210d4776cf8701c8327442e63e7e84f9b302fa1 100644 --- a/src/doc/conf.py +++ b/src/doc/conf.py @@ -33,10 +33,10 @@ copyright = '2024, IndiScale' author = 'Alexander Schlemmer' # The short X.Y version -version = '0.9.2' +version = '0.10.0' # The full version, including alpha/beta/rc tags # release = '0.5.2-rc2' -release = '0.9.2-dev' +release = '0.10.0' # -- General configuration ---------------------------------------------------