Skip to content

Commit 2a83fe7

Browse files
committed
Bump MAJOR version
1 parent 987e72f commit 2a83fe7

4 files changed

Lines changed: 9 additions & 9 deletions

File tree

CMakeLists.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,9 +7,9 @@ disallow_intree_builds()
77
project (utf8proc C)
88

99
# Be sure to also update these in Makefile!
10-
set(SO_MAJOR 2)
10+
set(SO_MAJOR 3)
1111
set(SO_MINOR 0)
12-
set(SO_PATCH 1)
12+
set(SO_PATCH 0)
1313

1414
add_definitions (
1515
-DUTF8PROC_EXPORTS

MANIFEST

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,6 @@ include/
22
include/utf8proc.h
33
lib/
44
lib/libutf8proc.a
5-
lib/libutf8proc.so -> libutf8proc.so.2.0.1
6-
lib/libutf8proc.so.2 -> libutf8proc.so.2.0.1
7-
lib/libutf8proc.so.2.0.1
5+
lib/libutf8proc.so -> libutf8proc.so.3.0.0
6+
lib/libutf8proc.so.3 -> libutf8proc.so.3.0.0
7+
lib/libutf8proc.so.3.0.0

Makefile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,9 +19,9 @@ UCFLAGS = $(CFLAGS) $(PICFLAG) $(C99FLAG) $(WCFLAGS) -DUTF8PROC_EXPORTS
1919
# not API compatibility: MAJOR should be incremented whenever *binary*
2020
# compatibility is broken, even if the API is backward-compatible
2121
# Be sure to also update these in MANIFEST and CMakeLists.txt!
22-
MAJOR=2
22+
MAJOR=3
2323
MINOR=0
24-
PATCH=1
24+
PATCH=0
2525

2626
OS := $(shell uname)
2727
ifeq ($(OS),Darwin) # MacOS X

utf8proc.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -68,9 +68,9 @@
6868
*/
6969
/** @{ */
7070
/** The MAJOR version number (increased when backwards API compatibility is broken). */
71-
#define UTF8PROC_VERSION_MAJOR 1
71+
#define UTF8PROC_VERSION_MAJOR 2
7272
/** The MINOR version number (increased when new functionality is added in a backwards-compatible manner). */
73-
#define UTF8PROC_VERSION_MINOR 3
73+
#define UTF8PROC_VERSION_MINOR 0
7474
/** The PATCH version (increased for fixes that do not change the API). */
7575
#define UTF8PROC_VERSION_PATCH 0
7676
/** @} */

0 commit comments

Comments
 (0)