Skip to content

Commit 2648180

Browse files
authoredSep 14, 2022
Update to Unicode 15.0.0 (#48)
1 parent a070273 commit 2648180

10 files changed

+95
-91
lines changed
 

‎CHANGELOG.md

+4
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
# Changelog
22

3+
**1.6.2**
4+
5+
* Update to Unicode 15.0.0
6+
37
**1.6.1**
48

59
* Fix [PEP 517](https://www.python.org/dev/peps/pep-0517/)-like installation using [build](https://github.com/pypa/build) (by [Tomasz Kłoczko](https://github.com/kloczek))

‎DerivedGeneralCategory.txt.sha

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
3f2a564c7bb3c555840f6abf8b7d215b8d57085210a983470bcb2269bfb56254797a6aa1777465f2b8b5f09ecd552ecd2f8ce0f4605a78df39612d712218f1d5 DerivedGeneralCategory.txt
1+
a8cb2766bac336e7719091d7f652b3bade075c4a07dceb5ea25f44f8913b33624666724e261122fce78cc6909d186194efe8d0905d6246beb53c6d784db53aa9 DerivedGeneralCategory.txt

‎Makefile

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ INCLUDES := \
1616
FILES := Makefile MANIFEST.in pyjson5.pyx README.rst setup.py ${INCLUDES}
1717

1818
DerivedGeneralCategory.txt: DerivedGeneralCategory.txt.sha
19-
curl -s -o $@ https://www.unicode.org/Public/14.0.0/ucd/extracted/DerivedGeneralCategory.txt
19+
curl -s -o $@ https://www.unicode.org/Public/15.0.0/ucd/extracted/DerivedGeneralCategory.txt
2020
python sha512sum.py -c $@.sha
2121

2222
src/_unicode_cat_of.hpp: DerivedGeneralCategory.txt make_unicode_categories.py

‎docs/conf.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
master_doc = 'index'
2222

2323
project = u'PyJSON5'
24-
copyright = u'2018-2021, René Kijewski'
24+
copyright = u'2018-2022, René Kijewski'
2525
author = u'René Kijewski'
2626

2727
with open('../src/VERSION.inc', 'rt') as f:

‎pyjson5.pyx

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# distutils: language = c++
22
# cython: embedsignature = True, language_level = 3, warn.undeclared = True, warn.unreachable = True, warn.maybe_uninitialized = True
33

4-
# Copyright 2018-2021 René Kijewski <rene.SURNAME@fu-berlin.de>
4+
# Copyright 2018-2022 René Kijewski <rene.SURNAME@fu-berlin.de>
55
#
66
# Licensed under the Apache License, Version 2.0 (the "License");
77
# you may not use this file except in compliance with the License.

‎requirements-readthedocs.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# keep synchronous to setup.cfg
2-
pyiced == 1.6.1
2+
pyjson5 == 1.6.2
33

44
docutils == 0.17.*
55
myst-parser == 0.18.*

‎setup.cfg

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[metadata]
2-
version = 1.6.1
2+
version = 1.6.2
33

44
name = pyjson5
55
description = JSON5 serializer and parser for Python 3 written in Cython.

‎src/VERSION.inc

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
"1.6.1"
1+
"1.6.2"

‎src/_exports.pyx

+1-1
Original file line numberDiff line numberDiff line change
@@ -621,4 +621,4 @@ __doc__ = PyUnicode_FromKindAndData(PyUnicode_1BYTE_KIND, LONGDESCRIPTION, LONGD
621621

622622
__license__ = 'Apache-2.0'
623623

624-
__author__ = '2018-2021 René Kijewski <rene.[surname]@fu-berlin.de>'
624+
__author__ = '2018-2022 René Kijewski <rene.[surname]@fu-berlin.de>'

‎src/_unicode_cat_of.hpp

+83-83
Large diffs are not rendered by default.

0 commit comments

Comments
 (0)
Please sign in to comment.