Skip to content

Commit

Permalink
Update README
Browse files Browse the repository at this point in the history
  • Loading branch information
Hugo Osvaldo Barrera committed Oct 26, 2017
1 parent e7c306d commit 52825a1
Showing 1 changed file with 83 additions and 49 deletions.
132 changes: 83 additions & 49 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,14 @@ Commandline::
Changelog
---------

:v0.8.0 First release under the name ``python-barcode``.
v0.8.1
~~~~~~
* Improve README rendering, and point to this fork's location (the outdated
README on PyPI was causing some confusion).

v0.8.0
~~~~~~
* First release under the name ``python-barcode``.

Previous Changelog
------------------
Expand All @@ -115,51 +122,78 @@ This project is a fork of pyBarcode, which, apparently, is no longer
maintained. v0.8.0 is our first release, and is the latest ``master`` from that
parent project.

:v0.8 Code 128 added. Data for charsets and bars moved to subpackage
barcode.charsets. Merged in some improvements.

:v0.7 Fixed some issues with fontsize and fontalignment.
Added Python 3 support. It's not well tested yet, but the tests
run without errors with Python 3.3. Commandline script added.

:v0.6 Changed save and write methods to take the options as a dict
not as keyword arguments (fix this in your code). Added option
to left align the text under the barcode. Fixed bug with EAN13
generation.

:v0.5.0 Added new generate function to do all generation in one step.
Moved writer from a subpackage to a module (this breaks some
existing code). UPC is now rendered as real UPC, not as EAN13
with the leading "0".

:v0.4.3 Fixed bug in new write method (related to PIL) and updated docs.

:v0.4.2 Added write method to support file like objects as target.

:v0.4.1 Bugfix release. Removed redundancy in input validation.
EAN8 was broken. It now works as expected.

:v0.4 Removed \*\*options from writers __init__ method. These options never
had effect. They were always overwritten by default_options.
New config option available: text_distance (the distance between
barcode and text).

:v0.4b2 Basic documentation included. The barcode object now has a new
attribute called `raw` to have the rendered output without saving
to disk.

:v0.4b1 Support for rendering barcodes as images is implemented.
PIL is required to use it.

:v0.3 Compression for SVG output now works.

:v0.3b1 Writer API has changed for simple adding new (own) writers.
SVG output is now generated with xml.dom module instead of
stringformatting (makes it more robust).

:v0.2.1 API of render changed. Now render takes keyword arguments
instead of a dict.

:v0.2 More tests added.

:v0.1 First release.
v0.8
~~~~
* Code 128 added.
* Data for charsets and bars moved to subpackage barcode.charsets.
* Merged in some improvements.

v0.7
~~~~
* Fixed some issues with fontsize and fontalignment.
* Added Python 3 support. It's not well tested yet, but the tests run without
errors with Python 3.3. Commandline script added.

v0.6
~~~~
* Changed save and write methods to take the options as a dict not as keyword
arguments (fix this in your code). Added option to left align the text under
the barcode. Fixed bug with EAN13 generation.

v0.5.0
~~~~~~
* Added new generate function to do all generation in one step.
* Moved writer from a subpackage to a module (this breaks some existing code).
UPC is now rendered as real UPC, not as EAN13 with the leading "0".

v0.4.3
~~~~~~
* Fixed bug in new write method (related to PIL) and updated docs.

v0.4.2
~~~~~~
* Added write method to support file like objects as target.

v0.4.1
~~~~~~
* Bugfix release. Removed redundancy in input validation.
* EAN8 was broken. It now works as expected.

v0.4
~~~~
* Removed \*\*options from writers __init__ method. These options never had
effect. They were always overwritten by default_options.
* New config option available: text_distance (the distance between barcode and
text).

v0.4b2
~~~~~~
* Basic documentation included. The barcode object now has a new attribute
called `raw` to have the rendered output without saving to disk.

v0.4b1
~~~~~~
* Support for rendering barcodes as images is implemented. PIL is required to
use it.

v0.3
~~~~
* Compression for SVG output now works.

v0.3b1
~~~~~~
* Writer API has changed for simple adding new (own) writers.
* SVG output is now generated with xml.dom module instead of stringformatting
(makes it more robust).

v0.2.1
~~~~~~
* API of render changed. Now render takes keyword arguments instead of a dict.

v0.2
~~~~
* More tests added.

v0.1
~~~~
* First release.

0 comments on commit 52825a1

Please sign in to comment.