Skip to content

Commit

Permalink
Bump dev version; update changelog; update year; add @lafrech to AUTHORS
Browse files Browse the repository at this point in the history
  • Loading branch information
sloria committed Jan 8, 2017
1 parent 4758be9 commit c256910
Show file tree
Hide file tree
Showing 5 changed files with 13 additions and 4 deletions.
2 changes: 2 additions & 0 deletions AUTHORS.rst
Expand Up @@ -27,3 +27,5 @@ Contributors (chronological)
* Vlad Frolov <https://github.com/frol>
* Tuukka Mustonen <https://github.com/tuukkamustonen>
* Francois-Xavier Darveau <https://github.com/EFF> 
* Jérôme Lafréchoux <https://github.com/lafrech> 

7 changes: 7 additions & 0 deletions CHANGELOG.rst
@@ -1,6 +1,13 @@
Changelog
---------

1.5.2 (unreleased)
******************

Bug fixes:

* Don't add ``marshmallow.missing`` to ``original_data`` when using ``marshmallow.validates_schema(pass_original=True)`` (:issue:`146`). Thanks :user:`lafrech` for reporting and for the fix.

1.5.1 (2016-11-27)
******************

Expand Down
2 changes: 1 addition & 1 deletion LICENSE
@@ -1,4 +1,4 @@
Copyright 2014-2016 Steven Loria and contributors
Copyright 2014-2017 Steven Loria and contributors

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
Expand Down
4 changes: 2 additions & 2 deletions docs/conf.py
@@ -1,5 +1,5 @@
# -*- coding: utf-8 -*-

import datetime as dt
import sys
import os

Expand Down Expand Up @@ -35,7 +35,7 @@
templates_path = ['_templates']
source_suffix = '.rst'
project = u'webargs'
copyright = u'2014-2015'
copyright = u'2014-{0:Y}'.format(dt.datetime.utcnow())
version = release = webargs.__version__
exclude_patterns = ['_build']

Expand Down
2 changes: 1 addition & 1 deletion webargs/__init__.py
Expand Up @@ -6,7 +6,7 @@
from webargs.core import argmap2schema, WebargsError, ValidationError
from webargs import fields

__version__ = '1.5.1'
__version__ = '1.5.2.dev0'
__author__ = 'Steven Loria'
__license__ = 'MIT'

Expand Down

0 comments on commit c256910

Please sign in to comment.