File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -7,9 +7,9 @@ disallow_intree_builds()
77project (utf8proc C )
88
99# Be sure to also update these in Makefile!
10- set (SO_MAJOR 2 )
10+ set (SO_MAJOR 3 )
1111set (SO_MINOR 0)
12- set (SO_PATCH 1 )
12+ set (SO_PATCH 0 )
1313
1414add_definitions (
1515 -DUTF8PROC_EXPORTS
Original file line number Diff line number Diff line change 22include/utf8proc.h
33lib/
44lib/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
Original file line number Diff line number Diff 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
2323MINOR =0
24- PATCH =1
24+ PATCH =0
2525
2626OS := $(shell uname)
2727ifeq ($(OS ) ,Darwin) # MacOS X
Original file line number Diff line number Diff line change 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/** @} */
You can’t perform that action at this time.
0 commit comments