Skip to content

Commit

Permalink
Bumped version to 4.1.1.
Browse files Browse the repository at this point in the history
  • Loading branch information
fukuchi committed Sep 27, 2020
1 parent d6f495a commit 50b3e57
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 3 deletions.
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
cmake_minimum_required(VERSION 3.1.0)

project(QRencode VERSION 4.1.0 LANGUAGES C)
project(QRencode VERSION 4.1.1 LANGUAGES C)

option(WITH_TOOLS "Build utility tools" YES )
option(WITH_TESTS "Build tests" NO )
Expand Down
1 change: 1 addition & 0 deletions ChangeLog
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@
- Fixed a bug in the calculation of the Micro QR Code's data capacity in
QRinput_encodeBitStream().
- A test case to test the bugs above has been added.
* Bumped version to 4.1.1.

2020.08.29 Kentaro Fukuchi <[email protected]>
[release-4.1.0]
Expand Down
6 changes: 6 additions & 0 deletions NEWS
Original file line number Diff line number Diff line change
@@ -1,6 +1,12 @@
libqrencode NEWS - Overview of changes
======================================

Version 4.1.1 (2020.9.28)
-------------------------
* Some minor bugs in Micro QR Code generation have been fixed.
* The data capacity calculations are now correct. These bugs probably did not
affect the Micro QR Code generation.

Version 4.1.0 (2020.8.29)
-------------------------
* Command line tool "qrencode" has been improved:
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# libqrencode - a fast and compact QR Code encoding library [![Build Status](https://travis-ci.org/fukuchi/libqrencode.png?branch=master)](https://travis-ci.org/fukuchi/libqrencode)

**Attention:** This repository contains the development version of libqrencode. See <https://fukuchi.org/works/qrencode/> for the official stable releases. At this moment, the latest stable release is version 4.1.0.
**Attention:** This repository contains the development version of libqrencode. See <https://fukuchi.org/works/qrencode/> for the official stable releases. At this moment, the latest stable release is version 4.1.1.

GENERAL INFORMATION
===================
Expand Down
2 changes: 1 addition & 1 deletion configure.ac
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
m4_define([__MAJOR_VERSION], [4])dnl
m4_define([__MINOR_VERSION], [1])dnl
m4_define([__MICRO_VERSION], [0])dnl
m4_define([__MICRO_VERSION], [1])dnl
m4_define([__VERSION], [__MAJOR_VERSION.__MINOR_VERSION.__MICRO_VERSION])dnl
AC_INIT(QRencode, __VERSION)

Expand Down

0 comments on commit 50b3e57

Please sign in to comment.