Skip to content

Commit e874adc

Browse files
committed
bump version to 0.5.1
1 parent 6476b90 commit e874adc

3 files changed

Lines changed: 6 additions & 4 deletions

File tree

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
- Copyright: (C) Qianqian Fang (2019-2022) <q.fang at neu.edu>
66
- License: Apache License, Version 2.0
7-
- Version: 0.5.0
7+
- Version: 0.5.1
88
- URL: https://github.com/NeuroJSON/pyjdata
99

1010
[![Build Status](https://travis-ci.com/fangq/pyjdata.svg?branch=master)](https://travis-ci.com/fangq/pyjdata)

jdata/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@
3636
from .jfile import load, save, show, loadt, savet, loadb, saveb, jext
3737
from .jdata import encode, decode, jdtype, jsonfilter
3838

39-
__version__ = "0.5.0"
39+
__version__ = "0.5.1"
4040
__all__ = [
4141
"load",
4242
"save",

setup.py

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
setup(
77
name = 'jdata',
88
packages = ['jdata'],
9-
version = '0.5.0',
9+
version = '0.5.1',
1010
license='Apache license 2.0',
1111
description = 'Encoding and decoding Python data structrues using portable JData-annotated formats',
1212
long_description=readme,
@@ -15,7 +15,7 @@
1515
author_email = 'fangqq@gmail.com',
1616
maintainer= 'Qianqian Fang',
1717
url = 'https://github.com/NeuroJSON/pyjdata',
18-
download_url = 'https://github.com/NeuroJSON/pyjdata/archive/v0.5.0.tar.gz',
18+
download_url = 'https://github.com/NeuroJSON/pyjdata/archive/v0.5.1.tar.gz',
1919
keywords = ['JSON', 'JData', 'UBJSON', 'BJData', 'OpenJData', 'NeuroJSON', 'JNIfTI', 'JMesh', 'Encoder', 'Decoder'],
2020
platforms="any",
2121
install_requires=[
@@ -33,6 +33,8 @@
3333
'Programming Language :: Python :: 3.6',
3434
'Programming Language :: Python :: 3.7',
3535
'Programming Language :: Python :: 3.8',
36+
'Programming Language :: Python :: 3.9',
37+
'Programming Language :: Python :: 3.10',
3638
'Topic :: Software Development :: Libraries',
3739
'Topic :: Software Development :: Libraries :: Python Modules'
3840
]

0 commit comments

Comments
 (0)