Skip to content

Commit

Permalink
bump version
Browse files Browse the repository at this point in the history
  • Loading branch information
MacHu-GWU committed Oct 7, 2021
1 parent 54ad5a0 commit 4f7d58d
Show file tree
Hide file tree
Showing 6 changed files with 18 additions and 18 deletions.
2 changes: 1 addition & 1 deletion LICENSE.txt
@@ -1,6 +1,6 @@
The MIT License (MIT)

Copyright 2019 Sanhe Hu <https://github.com/MacHu-GWU/superjson-project>
Copyright 2021 Sanhe Hu <https://github.com/MacHu-GWU/superjson-project>

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
8 changes: 4 additions & 4 deletions README.rst
Expand Up @@ -2,8 +2,8 @@
:target: https://superjson.readthedocs.io/index.html
:alt: Documentation Status

.. image:: https://travis-ci.org/MacHu-GWU/superjson-project.svg?branch=master
:target: https://travis-ci.org/MacHu-GWU/superjson-project?branch=master
.. image:: https://github.com/MacHu-GWU/superjson-project/workflows/CI/badge.svg
:target: https://github.com/MacHu-GWU/superjson-project/actions?query=workflow:CI

.. image:: https://codecov.io/gh/MacHu-GWU/superjson-project/branch/master/graph/badge.svg
:target: https://codecov.io/gh/MacHu-GWU/superjson-project
Expand Down Expand Up @@ -55,15 +55,15 @@ Welcome to ``superjson`` Documentation
===============================================================================
Features:

1. **Support** for ``date``, ``datetime``, ``set``, ``OrderedDict``, ``deque``, ``pathlib.Path``, ``numpy.ndarray``, that the original `json <https://docs.python.org/3/library/json.html>`_ module can not serialize.
1. **Support** for ``date``, ``datetime``, ``set``, ``OrderedDict``, ``deque``, that the original `json <https://docs.python.org/3/library/json.html>`_ module can not serialize.
2. **Easy to extend to support any custom data type**, `SEE HOW <extend_>`_.
3. Allow ``// double slash started comments``, ``# Pound key started comments`` style **comment** in json file (Good for human/machine readable config file).
4. Use ``.gz`` for file extension, data will be **automatically compressed**.
5. **Atomic Write is ensured**, operation of overwriting an existing json file is atomic.


Click `HERE for full documentation <https://superjson.readthedocs.io/index.html>`_.


.. _install:

Install
Expand Down
7 changes: 0 additions & 7 deletions docs/source/index.rst
Expand Up @@ -33,13 +33,6 @@ Original `json <https://docs.python.org/3/library/json.html>`_ module doesn't su
... ("b", OrderedDict([("b", 1), ("a", 2)])),
... ("a", OrderedDict([("b", 1), ("a", 2)])),
... ]),
... "path": Path(__file__),
... "array": np.array([
... [1, 2],
... [1.1, 2.2],
... ["a", "b"],
... [datetime.now(), datetime.now()],
... ]),
... }
>>> json.dumps(data, pretty=True)
Expand Down
7 changes: 6 additions & 1 deletion release-history.rst
Expand Up @@ -4,7 +4,6 @@ Release and Version History
==============================================================================



1.0.2 (TODO)
------------------------------------------------------------------------------

Expand All @@ -21,12 +20,18 @@ Release and Version History
------------------------------------------------------------------------------
**Features and Improvements**

- Drop built in Object hook for ``pahtlib.Path``, ``numpy.array``, ``pandas.DataFrame``.
- Remove unnecessary embedded packages.
- Drop support for Python2.7, support Python3.6 + only

**Minor Improvements**

**Bugfixes**

**Miscellaneous**

- API become stable


0.0.13 (2019-04-10)
------------------------------------------------------------------------------
Expand Down
10 changes: 6 additions & 4 deletions setup.py
Expand Up @@ -110,18 +110,18 @@
]

CLASSIFIERS = [
"Development Status :: 4 - Beta",
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Natural Language :: English",
"Operating System :: Microsoft :: Windows",
"Operating System :: MacOS",
"Operating System :: Unix",
"Programming Language :: Python",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3.4",
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
]
"""
Full list can be found at: https://pypi.python.org/pypi?%3Aaction=list_classifiers
Expand Down Expand Up @@ -234,6 +234,8 @@ def read_requirements_file(path):
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3 :: Only",
]
"""
2 changes: 1 addition & 1 deletion superjson/_version.py
@@ -1,4 +1,4 @@
__version__ = "0.0.13"
__version__ = "1.0.1"

if __name__ == "__main__": # pragma: no cover
print(__version__)

0 comments on commit 4f7d58d

Please sign in to comment.