Skip to content

Commit 6196ec6

Browse files
committed
update release version 0.12.0
1 parent de2e4b9 commit 6196ec6

File tree

3 files changed

+21
-1
lines changed

3 files changed

+21
-1
lines changed

README.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -159,6 +159,15 @@ python run_tests.py
159159
## Releasing
160160

161161
```bash
162+
# update version
163+
vi pygeometa/__init__.py
164+
git commit -m 'update release version' pygeometa/__init__.py
165+
vi debian/changelog # add changelog entry and summary of updates
166+
# push changes
167+
git push origin master
168+
git tag -a x.y.z -m 'tagging release x.y.z'
169+
# push tag
170+
git push --tags
162171
rm -fr build dist *.egg-info
163172
python setup.py sdist bdist_wheel --universal
164173
twine upload dist/*

debian/changelog

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,14 @@
1+
pygeometa (0.12.0) bionic; urgency=medium
2+
3+
* fix OARec temporal extent date casting
4+
* update OARec output to latest version of draft specification
5+
* add support for WMO Core Metadata Profile 2 (WCMP2)
6+
* fix ISO contact handling
7+
* add temporal resolution support
8+
* fix DCAT reference error
9+
10+
-- Tom Kralidis <tomkralidis@gmail.com> Sun, 28 Aug 2022 11:56:28 +0000
11+
112
pygeometa (0.11.1) bionic; urgency=medium
213

314
* fix ISO gmd:function handling

pygeometa/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@
4848

4949
from pygeometa.core import generate, import_, info, schemas, validate
5050

51-
__version__ = '0.11.1'
51+
__version__ = '0.12.0'
5252

5353

5454
@click.group()

0 commit comments

Comments
 (0)