Skip to content

Commit 3581bf7

Browse files
committed
[release] bump version to 0.4.1, update header
1 parent 8ef1b12 commit 3581bf7

14 files changed

Lines changed: 17 additions & 17 deletions

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,10 @@
22

33
# Binary JData for Python - a lightweight binary JSON format
44

5-
- Copyright: (C) Qianqian Fang (2020-2022) <q.fang at neu.edu>
5+
- Copyright: (C) Qianqian Fang (2020-2023) <q.fang at neu.edu>
66
- Copyright: (C) Iotic Labs Ltd. (2016-2019) <vilnis.termanis at iotic-labs.com>
77
- License: Apache License, Version 2.0
8-
- Version: 0.4.0
8+
- Version: 0.4.1
99
- URL: https://pypi.org/project/bjdata/
1010
- Github: https://github.com/NeuroJSON/pybj
1111
- BJData Spec Version: [V1 Draft 2](https://neurojson.org/bjdata/draft2)

bjdata/__init__.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Copyright (c) 2020-2022 Qianqian Fang <q.fang at neu.edu>. All rights reserved.
1+
# Copyright (c) 2020-2023 Qianqian Fang <q.fang at neu.edu>. All rights reserved.
22
# Copyright (c) 2016-2019 Iotic Labs Ltd. All rights reserved.
33
#
44
# Licensed under the Apache License, Version 2.0 (the "License");
@@ -38,6 +38,6 @@
3838
from .encoder import EncoderException
3939
from .decoder import DecoderException
4040

41-
__version__ = '0.4.0'
41+
__version__ = '0.4.1'
4242

4343
__all__ = ('EXTENSION_ENABLED', 'dump', 'dumpb', 'EncoderException', 'load', 'loadb', 'DecoderException')

bjdata/__main__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Copyright (c) 2020-2022 Qianqian Fang <q.fang at neu.edu>. All rights reserved.
1+
# Copyright (c) 2020-2023 Qianqian Fang <q.fang at neu.edu>. All rights reserved.
22
# Copyright (c) 2016-2019 Iotic Labs Ltd. All rights reserved.
33
#
44
# Licensed under the Apache License, Version 2.0 (the "License");

bjdata/compat.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Copyright (c) 2020-2022 Qianqian Fang <q.fang at neu.edu>. All rights reserved.
1+
# Copyright (c) 2020-2023 Qianqian Fang <q.fang at neu.edu>. All rights reserved.
22
# Copyright (c) 2016-2019 Iotic Labs Ltd. All rights reserved.
33
#
44
# Licensed under the Apache License, Version 2.0 (the "License");

bjdata/decoder.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Copyright (c) 2020-2022 Qianqian Fang <q.fang at neu.edu>. All rights reserved.
1+
# Copyright (c) 2020-2023 Qianqian Fang <q.fang at neu.edu>. All rights reserved.
22
# Copyright (c) 2016-2019 Iotic Labs Ltd. All rights reserved.
33
#
44
# Licensed under the Apache License, Version 2.0 (the "License");

bjdata/markers.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Copyright (c) 2020-2022 Qianqian Fang <q.fang at neu.edu>. All rights reserved.
1+
# Copyright (c) 2020-2023 Qianqian Fang <q.fang at neu.edu>. All rights reserved.
22
# Copyright (c) 2016-2019 Iotic Labs Ltd. All rights reserved.
33
#
44
# Licensed under the Apache License, Version 2.0 (the "License");

setup.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Copyright (c) 2020-2022 Qianqian Fang <q.fang at neu.edu>. All rights reserved.
1+
# Copyright (c) 2020-2023 Qianqian Fang <q.fang at neu.edu>. All rights reserved.
22
# Copyright (c) 2016-2019 Iotic Labs Ltd. All rights reserved.
33
#
44
# Licensed under the Apache License, Version 2.0 (the "License");
@@ -73,7 +73,7 @@ def build_extension(self, ext):
7373

7474
setup(
7575
name='bjdata',
76-
version='0.4.0',
76+
version='0.4.1',
7777
description='Binary JData and UBJSON encoder/decoder',
7878
long_description=load_description('README.md'),
7979
long_description_content_type='text/markdown',

src/_bjdata.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (c) 2020-2022 Qianqian Fang <q.fang at neu.edu>. All rights reserved.
2+
* Copyright (c) 2020-2023 Qianqian Fang <q.fang at neu.edu>. All rights reserved.
33
* Copyright (c) 2016-2019 Iotic Labs Ltd. All rights reserved.
44
*
55
* Licensed under the Apache License, Version 2.0 (the "License");

src/common.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (c) 2020-2022 Qianqian Fang <q.fang at neu.edu>. All rights reserved.
2+
* Copyright (c) 2020-2023 Qianqian Fang <q.fang at neu.edu>. All rights reserved.
33
* Copyright (c) 2016-2019 Iotic Labs Ltd. All rights reserved.
44
*
55
* Licensed under the Apache License, Version 2.0 (the "License");

src/decoder.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (c) 2020-2022 Qianqian Fang <q.fang at neu.edu>. All rights reserved.
2+
* Copyright (c) 2020-2023 Qianqian Fang <q.fang at neu.edu>. All rights reserved.
33
* Copyright (c) 2016-2019 Iotic Labs Ltd. All rights reserved.
44
*
55
* Licensed under the Apache License, Version 2.0 (the "License");

0 commit comments

Comments
 (0)