Skip to content

Commit

Permalink
Bump version and update release info
Browse files Browse the repository at this point in the history
  • Loading branch information
brunato committed Aug 2, 2021
1 parent 6d53f26 commit 57449a0
Show file tree
Hide file tree
Showing 5 changed files with 14 additions and 7 deletions.
7 changes: 7 additions & 0 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,12 @@
CHANGELOG
*********

`v1.7.0`_ (2021-08-02)
======================
* Make XSD annotation parsing lazy
* Add lazy annotations to schema instances
* Add get_annotation() method to multiple-facets classes (issue #255)

`v1.6.4`_ (2021-06-09)
======================
* Add testing config for Python 3.10 (Tox and CI)
Expand Down Expand Up @@ -457,3 +463,4 @@ v0.9.6 (2017-05-05)
.. _v1.6.2: https://github.com/brunato/xmlschema/compare/v1.6.1...v1.6.2
.. _v1.6.3: https://github.com/brunato/xmlschema/compare/v1.6.2...v1.6.3
.. _v1.6.4: https://github.com/brunato/xmlschema/compare/v1.6.3...v1.6.4
.. _v1.7.0: https://github.com/brunato/xmlschema/compare/v1.6.4...v1.7.0
4 changes: 2 additions & 2 deletions doc/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -63,9 +63,9 @@
# built documents.
#
# The short X.Y version.
version = '1.6'
version = '1.7'
# The full version, including alpha/beta/rc tags.
release = '1.6.4'
release = '1.7.0'

# The language for content autogenerated by Sphinx. Refer to documentation
# for a list of supported languages.
Expand Down
4 changes: 2 additions & 2 deletions publiccode.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@ publiccodeYmlVersion: '0.2'
name: xmlschema
url: 'https://github.com/sissaschool/xmlschema'
landingURL: 'https://github.com/sissaschool/xmlschema'
releaseDate: '2021-06-09'
softwareVersion: v1.6.4
releaseDate: '2021-08-02'
softwareVersion: v1.7.0
developmentStatus: stable
platforms:
- linux
Expand Down
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#! /usr/bin/env python
#
# Copyright (c) 2016-2020, SISSA (International School for Advanced Studies).
# Copyright (c) 2016-2021, SISSA (International School for Advanced Studies).
# All rights reserved.
# This file is distributed under the terms of the MIT License.
# See the file 'LICENSE' in the root directory of the present
Expand All @@ -18,7 +18,7 @@

setup(
name='xmlschema',
version='1.6.4',
version='1.7.0',
packages=find_packages(include=['xmlschema', 'xmlschema.*']),
include_package_data=True,
entry_points={
Expand Down
2 changes: 1 addition & 1 deletion xmlschema/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@
XsdComponent, XsdType, XsdElement, XsdAttribute
)

__version__ = '1.6.4'
__version__ = '1.7.0'
__author__ = "Davide Brunato"
__contact__ = "brunato@sissa.it"
__copyright__ = "Copyright 2016-2021, SISSA"
Expand Down

0 comments on commit 57449a0

Please sign in to comment.