From 283b96fed89fa22b9f61b1ae6c9b687f6ee6bce1 Mon Sep 17 00:00:00 2001 From: Robert Forkel Date: Mon, 23 Dec 2024 14:08:53 +0100 Subject: [PATCH] release 1.40.2 --- CHANGELOG.md | 2 +- docs/conf.py | 2 +- setup.cfg | 2 +- src/pycldf/__init__.py | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 7b48fac..524c23a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,7 +3,7 @@ The `pycldf` package adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html). -## [unreleased] +## [1.40.2] - 2024-12-23 Fixed issue whereby valid datasets could not be loaded into SQLite because the `database` module was not as forgiving regarding source keys as the CLDF spec (or the validation in `pycldf`). diff --git a/docs/conf.py b/docs/conf.py index 54e4a3f..b1e9a64 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -22,7 +22,7 @@ author = 'Robert Forkel' # The full version, including alpha/beta/rc tags -release = '1.40.2.dev0' +release = '1.40.2' # -- General configuration --------------------------------------------------- diff --git a/setup.cfg b/setup.cfg index 6156e71..8a1a1cd 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,6 +1,6 @@ [metadata] name = pycldf -version = 1.40.2.dev0 +version = 1.40.2 author = Robert Forkel author_email = robert_forkel@eva.mpg.de description = A python library to read and write CLDF datasets diff --git a/src/pycldf/__init__.py b/src/pycldf/__init__.py index c365a1f..ab8b1f3 100644 --- a/src/pycldf/__init__.py +++ b/src/pycldf/__init__.py @@ -4,4 +4,4 @@ from pycldf.terms import * # flake8: noqa -__version__ = "1.40.2.dev0" +__version__ = "1.40.2"