Skip to content

Commit d6f6851

Browse files
committed
release 1.0.1
1 parent 2571d91 commit d6f6851

File tree

3 files changed

+23
-24
lines changed

3 files changed

+23
-24
lines changed

CHANGES

+21-19
Original file line numberDiff line numberDiff line change
@@ -1,23 +1,25 @@
1-
0.1 (28 May 2020)
2-
- Initial release
3-
0.2 (29 May 2020)
4-
- parse raw output into structured result
5-
- enable using pre-compiled jar file
6-
0.3 (31 May 2020)
7-
- support read multiple barcodes in a picture
8-
- scan multiple files in parallel
9-
- fix Linux runtime error
1+
1.0.1 (18 April 2021)
2+
- fix jar preparation and add test case
3+
1.0.0 (12 April 2021)
4+
- better decoding performance
5+
0.3.5 (6 March 2021)
6+
- support decoding qrcode with bytes format content
7+
- support passing array into BarCodeReader
8+
0.3.4 (2 March 2021)
9+
- add points information in result
10+
0.3.3 (29 Nov 2020)
11+
- Update result parser
12+
- support using absolute path
1013
0.3.1 (28 July 2020)
1114
- add command line runner
1215
- fix download link
1316
- optimize cache logic
14-
0.3.3 (29 Nov 2020)
15-
- Update result parser
16-
- support using absolute path
17-
0.3.4 (2 March 2021)
18-
- add points information in result
19-
0.3.5 (6 March 2021)
20-
- support decoding qrcode with bytes format content
21-
- support passing array into BarCodeReader
22-
1.0.0 (12 April 2021)
23-
- better decoding performance
17+
0.3 (31 May 2020)
18+
- support read multiple barcodes in a picture
19+
- scan multiple files in parallel
20+
- fix Linux runtime error
21+
0.2 (29 May 2020)
22+
- parse raw output into structured result
23+
- enable using pre-compiled jar file
24+
0.1 (28 May 2020)
25+
- Initial release

pyzxing/meta.yaml

+1-4
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{% set name = "pyzxing" %}
2-
{% set version = "1.0.0" %}
2+
{% set version = "1.0.1" %}
33

44

55
package:
@@ -9,12 +9,9 @@ package:
99
source:
1010
git_url: https://github.com/ChenjieXu/pyzxing
1111
git_rev: v{{ version }}
12-
# url: https://pypi.io/packages/source/{{ name[0] }}/{{ name }}/pyzxing-{{ version }}.tar.gz
13-
# sha256: ac9efa22fce567e3f4234cd6392a1aa2e01fef6ec62753e57cf9038a9c64a231
1412

1513
build:
1614
number: 0
17-
noarch: python
1815
script: {{ PYTHON }} -m pip install . -vv
1916

2017
requirements:

setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77

88
setup(
99
name="pyzxing",
10-
version="1.0.0",
10+
version="1.0.1",
1111
url="https://github.com/ChenjieXu/pyzxing",
1212
description="Python wrapper for ZXing Java library",
1313
long_description=readme,

0 commit comments

Comments
 (0)