Releases: rymdport/go-qrcode
Releases · rymdport/go-qrcode
v1.2.0
This release implements some more code cleanups, modernizes CI and adds a new method to help reuse codes instead of having to create a new one each time.
Changelog
- Added
SetContent
method to allow reusing a QRCode object. - Some internal lookup tables are now arrays to help the compiler know they won't grow.
- Some minor code cleanups.
v1.1.0
A small release with some cleanups, performance improvements and a small crash fix.
Changelog
- Fixed potential crash in
WriteColorFile
if there is an error. - Replaced
bytes.Buffer
withstrings.Builder
for slightly faster string concatenation. - Use
string
instead of[]byte
for encoding internally. Avoids allocating copies. - More minor code cleanups