Skip to content

Commit

Permalink
build: Iterate the version number
Browse files Browse the repository at this point in the history
  • Loading branch information
jpmckinney committed Jan 14, 2024
1 parent 60bc6bc commit 4f25e23
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 2 deletions.
10 changes: 10 additions & 0 deletions docs/changelog.rst
Original file line number Diff line number Diff line change
@@ -1,6 +1,16 @@
validictory changelog
=====================

1.1.3
-----
**Unreleased**

* Add support for recent Python versions.

* `"Remove deprecated aliases to Collections Abstract Base Classes from the collections module. <https://docs.python.org/3/whatsnew/3.10.html#removed>`__

* Drop support for end-of-life Python versions.

1.1.2
-----
**2017-12-01**
Expand Down
2 changes: 1 addition & 1 deletion docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@

project = 'validictory'
copyright = '2014, James Turk'
version = '1.1.2'
version = '1.1.3'
release = version

# -- General configuration ---------------------------------------------------
Expand Down
2 changes: 1 addition & 1 deletion validictory/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

__all__ = ['validate', 'SchemaValidator', 'FieldValidationError', 'MultipleValidationError',
'ValidationError', 'SchemaError']
__version__ = '1.1.2'
__version__ = '1.1.3'


def validate(data, schema, validator_cls=SchemaValidator,
Expand Down

0 comments on commit 4f25e23

Please sign in to comment.