Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
S
simplejson
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Deploy
Releases
Container registry
Model registry
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
OpenVMS
Python
Modules
simplejson
Commits
dadc45af9b07
Commit
dadc45af9b07
authored
10 years ago
by
Bob Ippolito
Browse files
Options
Downloads
Patches
Plain Diff
update version for v3.6.4
parent
61a966cd3943
Branches
Branches containing commit
No related tags found
No related merge requests found
Changes
4
Show whitespace changes
Inline
Side-by-side
Showing
4 changed files
CHANGES.txt
+5
-0
5 additions, 0 deletions
CHANGES.txt
conf.py
+1
-1
1 addition, 1 deletion
conf.py
setup.py
+1
-1
1 addition, 1 deletion
setup.py
simplejson/__init__.py
+1
-1
1 addition, 1 deletion
simplejson/__init__.py
with
8 additions
and
3 deletions
CHANGES.txt
+
5
−
0
View file @
dadc45af
Version 3.6.4 released 2014-09-29
* Important bug fix for dump when only sort_keys is set
https://github.com/simplejson/simplejson/issues/106
Version 3.6.3 released 2014-08-18
* Documentation updates
...
...
This diff is collapsed.
Click to expand it.
conf.py
+
1
−
1
View file @
dadc45af
...
...
@@ -44,7 +44,7 @@
# The short X.Y version.
version
=
'
3.6
'
# The full version, including alpha/beta/rc tags.
release
=
'
3.6.
3
'
release
=
'
3.6.
4
'
# There are two options for replacing |today|: either, you set today to some
# non-false value, then it is used:
...
...
This diff is collapsed.
Click to expand it.
setup.py
+
1
−
1
View file @
dadc45af
...
...
@@ -11,7 +11,7 @@
DistutilsPlatformError
IS_PYPY
=
hasattr
(
sys
,
'
pypy_translation_info
'
)
VERSION
=
'
3.6.
3
'
VERSION
=
'
3.6.
4
'
DESCRIPTION
=
"
Simple, fast, extensible JSON encoder/decoder for Python
"
with
open
(
'
README.rst
'
,
'
r
'
)
as
f
:
...
...
This diff is collapsed.
Click to expand it.
simplejson/__init__.py
+
1
−
1
View file @
dadc45af
...
...
@@ -98,7 +98,7 @@
Expecting property name: line 1 column 3 (char 2)
"""
from
__future__
import
absolute_import
__version__
=
'
3.6.
3
'
__version__
=
'
3.6.
4
'
__all__
=
[
'
dump
'
,
'
dumps
'
,
'
load
'
,
'
loads
'
,
'
JSONDecoder
'
,
'
JSONDecodeError
'
,
'
JSONEncoder
'
,
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment