From 50b3e5725cafccfde038c0833cdaa5b1c28491e2 Mon Sep 17 00:00:00 2001 From: Kentaro Fukuchi Date: Mon, 28 Sep 2020 03:01:27 +0900 Subject: [PATCH] Bumped version to 4.1.1. --- CMakeLists.txt | 2 +- ChangeLog | 1 + NEWS | 6 ++++++ README.md | 2 +- configure.ac | 2 +- 5 files changed, 10 insertions(+), 3 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 9f7fe4bf..773e0374 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -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 ) diff --git a/ChangeLog b/ChangeLog index 8d6bdd31..6bb84f92 100644 --- a/ChangeLog +++ b/ChangeLog @@ -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 [release-4.1.0] diff --git a/NEWS b/NEWS index 7b56724e..63e32fa1 100644 --- a/NEWS +++ b/NEWS @@ -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: diff --git a/README.md b/README.md index 5e075e7d..dbbfe097 100644 --- a/README.md +++ b/README.md @@ -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 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 for the official stable releases. At this moment, the latest stable release is version 4.1.1. GENERAL INFORMATION =================== diff --git a/configure.ac b/configure.ac index 72dd9d85..c4ef27ab 100644 --- a/configure.ac +++ b/configure.ac @@ -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)