Bump version number.
This commit is contained in:
parent
26436c9775
commit
ee3c20e46b
@ -7,9 +7,9 @@ disallow_intree_builds()
|
|||||||
project (utf8proc C)
|
project (utf8proc C)
|
||||||
|
|
||||||
# Be sure to also update these in Makefile!
|
# Be sure to also update these in Makefile!
|
||||||
set(SO_MAJOR 1)
|
set(SO_MAJOR 2)
|
||||||
set(SO_MINOR 3)
|
set(SO_MINOR 0)
|
||||||
set(SO_PATCH 1)
|
set(SO_PATCH 0)
|
||||||
|
|
||||||
add_definitions (
|
add_definitions (
|
||||||
-DUTF8PROC_EXPORTS
|
-DUTF8PROC_EXPORTS
|
||||||
|
|||||||
6
MANIFEST
6
MANIFEST
@ -2,6 +2,6 @@ include/
|
|||||||
include/utf8proc.h
|
include/utf8proc.h
|
||||||
lib/
|
lib/
|
||||||
lib/libutf8proc.a
|
lib/libutf8proc.a
|
||||||
lib/libutf8proc.so -> libutf8proc.so.1.3.1
|
lib/libutf8proc.so -> libutf8proc.so.2.0.0
|
||||||
lib/libutf8proc.so.1 -> libutf8proc.so.1.3.1
|
lib/libutf8proc.so.2 -> libutf8proc.so.2.0.0
|
||||||
lib/libutf8proc.so.1.3.1
|
lib/libutf8proc.so.2.0.0
|
||||||
|
|||||||
6
Makefile
6
Makefile
@ -19,9 +19,9 @@ UCFLAGS = $(CFLAGS) $(PICFLAG) $(C99FLAG) $(WCFLAGS) -DUTF8PROC_EXPORTS
|
|||||||
# not API compatibility: MAJOR should be incremented whenever *binary*
|
# not API compatibility: MAJOR should be incremented whenever *binary*
|
||||||
# compatibility is broken, even if the API is backward-compatible
|
# compatibility is broken, even if the API is backward-compatible
|
||||||
# Be sure to also update these in MANIFEST and CMakeLists.txt!
|
# Be sure to also update these in MANIFEST and CMakeLists.txt!
|
||||||
MAJOR=1
|
MAJOR=2
|
||||||
MINOR=3
|
MINOR=0
|
||||||
PATCH=1
|
PATCH=0
|
||||||
|
|
||||||
OS := $(shell uname)
|
OS := $(shell uname)
|
||||||
ifeq ($(OS),Darwin) # MacOS X
|
ifeq ($(OS),Darwin) # MacOS X
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user