Skip to content

Commit 2841664

Browse files
committed
2.6.1 version bump
1 parent 8239639 commit 2841664

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ project (utf8proc C)
1111
# Be sure to also update these in Makefile and MANIFEST!
1212
set(SO_MAJOR 2)
1313
set(SO_MINOR 4)
14-
set(SO_PATCH 0)
14+
set(SO_PATCH 1)
1515

1616
option(UTF8PROC_INSTALL "Enable installation of utf8proc" On)
1717
option(UTF8PROC_ENABLE_TESTING "Enable testing of utf8proc" Off)

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ SOFLAG = -Wl,-soname
2424
# Be sure to also update these ABI versions in MANIFEST and CMakeLists.txt!
2525
MAJOR=2
2626
MINOR=4
27-
PATCH=0
27+
PATCH=1
2828

2929
OS := $(shell uname)
3030
ifeq ($(OS),Darwin) # MacOS X

utf8proc.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@
7373
/** The MINOR version number (increased when new functionality is added in a backwards-compatible manner). */
7474
#define UTF8PROC_VERSION_MINOR 6
7575
/** The PATCH version (increased for fixes that do not change the API). */
76-
#define UTF8PROC_VERSION_PATCH 0
76+
#define UTF8PROC_VERSION_PATCH 1
7777
/** @} */
7878

7979
#include <stdlib.h>

0 commit comments

Comments
 (0)