Skip to content

Commit

Permalink
Bump version to 1.3.0.
Browse files Browse the repository at this point in the history
  • Loading branch information
michaelrsweet committed Jun 7, 2023
1 parent 3e70dae commit f5e547f
Show file tree
Hide file tree
Showing 4 changed files with 26 additions and 17 deletions.
9 changes: 9 additions & 0 deletions CHANGES.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,15 @@
LPrint Change History
=====================

v1.3.0 - Month DD, YYYY
-----------------------

- Added new dithering algorithm to better support barcode printing with shaded
content.
- Updated ZPL driver to report 'media-needed' reason when out of labels during a
job.


v1.2.0 - December 31, 2022
--------------------------

Expand Down
26 changes: 13 additions & 13 deletions configure
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#! /bin/sh
# Guess values for system-dependent variables and create Makefiles.
# Generated by GNU Autoconf 2.71 for lprint 1.2.1.
# Generated by GNU Autoconf 2.71 for lprint 1.3.0.
#
# Report bugs to <https://github.com/michaelrsweet/lprint/issues>.
#
Expand Down Expand Up @@ -610,8 +610,8 @@ MAKEFLAGS=
# Identity of this package.
PACKAGE_NAME='lprint'
PACKAGE_TARNAME='lprint'
PACKAGE_VERSION='1.2.1'
PACKAGE_STRING='lprint 1.2.1'
PACKAGE_VERSION='1.3.0'
PACKAGE_STRING='lprint 1.3.0'
PACKAGE_BUGREPORT='https://github.com/michaelrsweet/lprint/issues'
PACKAGE_URL='https://michaelrsweet.github.io/lprint'

Expand Down Expand Up @@ -1248,7 +1248,7 @@ if test "$ac_init_help" = "long"; then
# Omit some internal or obsolete options to make the list less imposing.
# This message is too long to be a string in the A/UX 3.1 sh.
cat <<_ACEOF
\`configure' configures lprint 1.2.1 to adapt to many kinds of systems.
\`configure' configures lprint 1.3.0 to adapt to many kinds of systems.
Usage: $0 [OPTION]... [VAR=VALUE]...
Expand Down Expand Up @@ -1314,7 +1314,7 @@ fi

if test -n "$ac_init_help"; then
case $ac_init_help in
short | recursive ) echo "Configuration of lprint 1.2.1:";;
short | recursive ) echo "Configuration of lprint 1.3.0:";;
esac
cat <<\_ACEOF
Expand Down Expand Up @@ -1409,7 +1409,7 @@ fi
test -n "$ac_init_help" && exit $ac_status
if $ac_init_version; then
cat <<\_ACEOF
lprint configure 1.2.1
lprint configure 1.3.0
generated by GNU Autoconf 2.71
Copyright (C) 2021 Free Software Foundation, Inc.
Expand Down Expand Up @@ -1485,7 +1485,7 @@ cat >config.log <<_ACEOF
This file contains any messages produced by compilers while
running configure, to aid debugging if configure makes a mistake.
It was created by lprint $as_me 1.2.1, which was
It was created by lprint $as_me 1.3.0, which was
generated by GNU Autoconf 2.71. Invocation command line was
$ $0$ac_configure_args_raw
Expand Down Expand Up @@ -2234,15 +2234,15 @@ ac_compiler_gnu=$ac_cv_c_compiler_gnu
ac_config_headers="$ac_config_headers config.h"
LPRINT_VERSION="1.2.1"
LPRINT_VERSION="1.3.0"
printf "%s\n" "#define LPRINT_VERSION \"$LPRINT_VERSION\"" >>confdefs.h
LPRINT_MAJOR_VERSION="$(echo 1.2.1 | awk -F. '{print $1}')"
LPRINT_MINOR_VERSION="$(echo 1.2.1 | awk -F. '{print $2}')"
LPRINT_PATCH_VERSION="$(echo 1.2.1 | awk -F. '{print $3}')"
LPRINT_MAJOR_VERSION="$(echo 1.3.0 | awk -F. '{print $1}')"
LPRINT_MINOR_VERSION="$(echo 1.3.0 | awk -F. '{print $2}')"
LPRINT_PATCH_VERSION="$(echo 1.3.0 | awk -F. '{print $3}')"
printf "%s\n" "#define LPRINT_MAJOR_VERSION $LPRINT_MAJOR_VERSION" >>confdefs.h
Expand Down Expand Up @@ -4498,7 +4498,7 @@ cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1
# report actual input values of CONFIG_FILES etc. instead of their
# values after options handling.
ac_log="
This file was extended by lprint $as_me 1.2.1, which was
This file was extended by lprint $as_me 1.3.0, which was
generated by GNU Autoconf 2.71. Invocation command line was
CONFIG_FILES = $CONFIG_FILES
Expand Down Expand Up @@ -4563,7 +4563,7 @@ ac_cs_config_escaped=`printf "%s\n" "$ac_cs_config" | sed "s/^ //; s/'/'\\\\\\\\
cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1
ac_cs_config='$ac_cs_config_escaped'
ac_cs_version="\\
lprint config.status 1.2.1
lprint config.status 1.3.0
configured by $0, generated by GNU Autoconf 2.71,
with options \\"\$ac_cs_config\\"
Expand Down
2 changes: 1 addition & 1 deletion configure.ac
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ AC_PREREQ(2.60)


dnl Package name and version...
AC_INIT([lprint], [1.2.1], [https://github.com/michaelrsweet/lprint/issues], [lprint], [https://michaelrsweet.github.io/lprint])
AC_INIT([lprint], [1.3.0], [https://github.com/michaelrsweet/lprint/issues], [lprint], [https://michaelrsweet.github.io/lprint])
AC_CONFIG_HEADERS([config.h])

LPRINT_VERSION="AC_PACKAGE_VERSION"
Expand Down
6 changes: 3 additions & 3 deletions xcode/config.h
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
//
// Xcode configuration header file for LPrint, a Label Printer Application
//
// Copyright © 2019-2022 by Michael R Sweet.
// Copyright © 2019-2023 by Michael R Sweet.
//
// Licensed under Apache License v2.0. See the file "LICENSE" for more
// information.
//

// Version number
#define LPRINT_VERSION "1.2.0"
#define LPRINT_VERSION "1.3.0"
#define LPRINT_MAJOR_VERSION 1
#define LPRINT_MINOR_VERSION 2
#define LPRINT_MINOR_VERSION 3
#define LPRINT_PATCH_VERSION 0

0 comments on commit f5e547f

Please sign in to comment.