Skip to content

Commit e1feda9

Browse files
committed
release 2.0.2
1 parent 29f53b2 commit e1feda9

4 files changed

Lines changed: 9 additions & 3 deletions

File tree

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,12 @@
11
# Changes
22

33

4+
## [2.0.2] - 2026-02-11
5+
6+
Make sure release instructions as output by `cldfbench glottography.release` work
7+
when copy-pasted to the commandline.
8+
9+
410
## [2.0.1] - 2026-02-11
511

612
We must make sure to only use valid geometries in operations such as `unary_union`.

setup.cfg

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[metadata]
22
name = pyglottography
3-
version = 2.0.2.dev0
3+
version = 2.0.2
44
author = Robert Forkel
55
author_email = robert_forkel@eva.mpg.de
66
description = Programmatic curation of Glottography datasets

src/pyglottography/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
#
22
from .dataset import Dataset
33

4-
__version__ = '2.0.2.dev0'
4+
__version__ = '2.0.2'
55
assert Dataset

src/pyglottography/commands/release.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ def run(args): # pragma: no cover
2626
DOI""".format(cldf.properties['dc:bibliographicCitation']),
2727
encoding='utf8')
2828
print('gh release create {} --title "{}" --notes-file relnotes.txt'.format(
29-
tag, cldf.properties['dc:title']))
29+
tag, cldf.properties['dc:title'].replace('"', r'\"')))
3030
print('')
3131
print("Now you should grab the Zenodo version DOI from\n"
3232
"https://zenodo.org/account/settings/github/repository/Glottography/{0}\n"

0 commit comments

Comments
 (0)