Skip to content

Commit

Permalink
Expose NotFoundException, FormatReaderException and ChecksumException (
Browse files Browse the repository at this point in the history
  • Loading branch information
xvrh authored Feb 22, 2024
1 parent af3bc86 commit a07b229
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 1 deletion.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
## [0.2.3]

* Expose NotFoundException, FormatReaderException and ChecksumException

## [0.2.2]

* Fix some lints
Expand Down
3 changes: 3 additions & 0 deletions lib/zxing2.dart
Original file line number Diff line number Diff line change
@@ -1,13 +1,16 @@
export 'src/barcode_format.dart' show BarcodeFormat;
export 'src/binarizer.dart' show Binarizer;
export 'src/binary_bitmap.dart' show BinaryBitmap;
export 'src/checksum_exception.dart' show ChecksumException;
export 'src/common/character_set_eci.dart' show CharacterSetECI;
export 'src/common/global_histogram_binarizer.dart'
show GlobalHistogramBinarizer;
export 'src/common/hybrid_binarizer.dart' show HybridBinarizer;
export 'src/decode_hint.dart' show DecodeHints, DecodeHintType;
export 'src/format_reader_exception.dart' show FormatReaderException;
export 'src/inverted_luminance_source.dart' show InvertedLuminanceSource;
export 'src/luminance_source.dart' show LuminanceSource;
export 'src/not_found_exception.dart' show NotFoundException;
export 'src/reader.dart' show Reader;
export 'src/reader_exception.dart' show ReaderException;
export 'src/result.dart' show Result;
Expand Down
2 changes: 1 addition & 1 deletion pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: zxing2
description: A multi-format 1D/2D barcode image processing library implemented in Dart. This is a port of the Android library.
version: 0.2.2
version: 0.2.3
homepage: https://github.com/xvrh/zxing-dart

environment:
Expand Down

0 comments on commit a07b229

Please sign in to comment.