Skip to content

Commit

Permalink
update release version 0.12.0
Browse files Browse the repository at this point in the history
  • Loading branch information
tomkralidis committed Aug 28, 2022
1 parent de2e4b9 commit 6196ec6
Show file tree
Hide file tree
Showing 3 changed files with 21 additions and 1 deletion.
9 changes: 9 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -159,6 +159,15 @@ python run_tests.py
## Releasing

```bash
# update version
vi pygeometa/__init__.py
git commit -m 'update release version' pygeometa/__init__.py
vi debian/changelog # add changelog entry and summary of updates
# push changes
git push origin master
git tag -a x.y.z -m 'tagging release x.y.z'
# push tag
git push --tags
rm -fr build dist *.egg-info
python setup.py sdist bdist_wheel --universal
twine upload dist/*
Expand Down
11 changes: 11 additions & 0 deletions debian/changelog
Original file line number Diff line number Diff line change
@@ -1,3 +1,14 @@
pygeometa (0.12.0) bionic; urgency=medium

* fix OARec temporal extent date casting
* update OARec output to latest version of draft specification
* add support for WMO Core Metadata Profile 2 (WCMP2)
* fix ISO contact handling
* add temporal resolution support
* fix DCAT reference error

-- Tom Kralidis <tomkralidis@gmail.com> Sun, 28 Aug 2022 11:56:28 +0000

pygeometa (0.11.1) bionic; urgency=medium

* fix ISO gmd:function handling
Expand Down
2 changes: 1 addition & 1 deletion pygeometa/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@

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

__version__ = '0.11.1'
__version__ = '0.12.0'


@click.group()
Expand Down

0 comments on commit 6196ec6

Please sign in to comment.