Skip to content

Commit

Permalink
Merge pull request #304 from simplejson/version-bump
Browse files Browse the repository at this point in the history
Update version to v3.18.1 and update CHANGES for #303
  • Loading branch information
etrepum committed Nov 16, 2022
2 parents edde4ef + f7f0362 commit 4a22505
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 4 deletions.
5 changes: 5 additions & 0 deletions CHANGES.txt
@@ -1,3 +1,8 @@
Version 3.18.1 released 2022-XX-XX

* Remove unnecessary `i` variable from encoder module namespace
https://github.com/simplejson/simplejson/pull/303

Version 3.18.0 released 2022-11-14

* Allow serialization of classes that implement for_json or _asdict by
Expand Down
4 changes: 2 additions & 2 deletions conf.py
Expand Up @@ -36,15 +36,15 @@

# General substitutions.
project = 'simplejson'
copyright = '2021, Bob Ippolito'
copyright = '2022, Bob Ippolito'

# The default replacements for |version| and |release|, also used in various
# other places throughout the built documents.
#
# The short X.Y version.
version = '3.18'
# The full version, including alpha/beta/rc tags.
release = '3.18.0'
release = '3.18.1'

# There are two options for replacing |today|: either, you set today to some
# non-false value, then it is used:
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Expand Up @@ -12,7 +12,7 @@
DistutilsPlatformError

IS_PYPY = hasattr(sys, 'pypy_translation_info')
VERSION = '3.18.0'
VERSION = '3.18.1'
DESCRIPTION = "Simple, fast, extensible JSON encoder/decoder for Python"

with open('README.rst', 'r') as f:
Expand Down
2 changes: 1 addition & 1 deletion simplejson/__init__.py
Expand Up @@ -118,7 +118,7 @@
"""
from __future__ import absolute_import
__version__ = '3.18.0'
__version__ = '3.18.1'
__all__ = [
'dump', 'dumps', 'load', 'loads',
'JSONDecoder', 'JSONDecodeError', 'JSONEncoder',
Expand Down

0 comments on commit 4a22505

Please sign in to comment.