Skip to content

Commit

Permalink
release 1.40.3
Browse files Browse the repository at this point in the history
  • Loading branch information
xrotwang committed Jan 3, 2025
1 parent 24e6d13 commit fdac395
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
The `pycldf` package adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html).


## [Unreleased]
## [1.40.3] - 2025-01-03

- Fixed issue where the wrong value was assigned to ORM objects' `description` attribute.
- Better error message when validating source with trailing separator.
Expand Down
4 changes: 2 additions & 2 deletions docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,11 +18,11 @@
# -- Project information -----------------------------------------------------

project = 'pycldf'
copyright = '2024, Robert Forkel'
copyright = '2025, Robert Forkel'
author = 'Robert Forkel'

# The full version, including alpha/beta/rc tags
release = '1.40.3.dev0'
release = '1.40.3'


# -- General configuration ---------------------------------------------------
Expand Down
2 changes: 1 addition & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[metadata]
name = pycldf
version = 1.40.3.dev0
version = 1.40.3
author = Robert Forkel
author_email = robert_forkel@eva.mpg.de
description = A python library to read and write CLDF datasets
Expand Down
2 changes: 1 addition & 1 deletion src/pycldf/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,4 @@
from pycldf.terms import *

# flake8: noqa
__version__ = "1.40.3.dev0"
__version__ = "1.40.3"
2 changes: 1 addition & 1 deletion tests/test_dataset.py
Original file line number Diff line number Diff line change
Expand Up @@ -971,7 +971,7 @@ def test_Dataset_validate_trailing_separator_for_source(structuredataset_with_ex
shutil.copytree(structuredataset_with_examples.directory, tmp_path / 'ds')
for fname, k, v in [
('metadata.json', '"dc:source": ""', '"dc:source": "sources.bib"'),
('values.csv', ',c1,,', ',c1,key;,'),
('values.csv', ',c1,,', ',c1,key;,'), # Trailing separator.
]:
p = tmp_path / 'ds' / fname
content = p.read_text(encoding='utf-8').replace(k, v)
Expand Down

0 comments on commit fdac395

Please sign in to comment.