Skip to content

Commit

Permalink
Bump the master patch number by 1, to version 1.85.1
Browse files Browse the repository at this point in the history
* To avoid confusion with the latest release
  • Loading branch information
DanBloomberg committed Oct 17, 2024
1 parent 63aef18 commit 96a3d74
Show file tree
Hide file tree
Showing 7 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ set_property(GLOBAL PROPERTY PREDEFINED_TARGETS_FOLDER "CMake Targets")
project(
leptonica
LANGUAGES C
VERSION 1.85.0)
VERSION 1.85.1)
set(CMAKE_C_STANDARD 11)
set(CMAKE_C_STANDARD_REQUIRED ON)

Expand Down
2 changes: 1 addition & 1 deletion Doxyfile
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ PROJECT_NAME = Leptonica
# could be handy for archiving the generated documentation or if some version
# control system is used.

PROJECT_NUMBER = 1.85.0
PROJECT_NUMBER = 1.85.1

# Using the PROJECT_BRIEF tag one can provide an optional one line description
# for a project that appears at the top of each page and should give viewer a
Expand Down
2 changes: 1 addition & 1 deletion configure.ac
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
AC_PREREQ([2.69])
AC_INIT([leptonica], [1.85.0])
AC_INIT([leptonica], [1.85.1])
AC_CONFIG_AUX_DIR([config])
AC_CONFIG_HEADERS([config_auto.h:config/config.h.in])
AC_CONFIG_SRCDIR([src/adaptmap.c])
Expand Down
2 changes: 1 addition & 1 deletion src/allheaders.h
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@

#define LIBLEPT_MAJOR_VERSION 1
#define LIBLEPT_MINOR_VERSION 85
#define LIBLEPT_PATCH_VERSION 0
#define LIBLEPT_PATCH_VERSION 1

#include "alltypes.h"

Expand Down
2 changes: 1 addition & 1 deletion src/allheaders_top.txt
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@

#define LIBLEPT_MAJOR_VERSION 1
#define LIBLEPT_MINOR_VERSION 85
#define LIBLEPT_PATCH_VERSION 0
#define LIBLEPT_PATCH_VERSION 1

#include "alltypes.h"

Expand Down
2 changes: 1 addition & 1 deletion src/makefile.static
Original file line number Diff line number Diff line change
Expand Up @@ -156,7 +156,7 @@ LIBRARIAN_SHARED = gcc -shared
# <libname>.X, and <libname>, where Y is the minor revision number.
MAJOR_REV = 1
MINOR_REV = 85
PATCH_REV = 0
PATCH_REV = 1

#########################################################

Expand Down
2 changes: 1 addition & 1 deletion sw.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ void build(Solution &s)
t += "org.sw.demo.webmproject.webp"_dep;
};

auto &leptonica = s.addTarget<LibraryTarget>("danbloomberg.leptonica", "1.85.0");
auto &leptonica = s.addTarget<LibraryTarget>("danbloomberg.leptonica", "1.85.1");
leptonica += Git("https://github.com/DanBloomberg/leptonica");

{
Expand Down

0 comments on commit 96a3d74

Please sign in to comment.