Skip to content

Commit 1cb28a6

Browse files
authored
v2.8.0 bump (#248)
* version 2.8.0 bump * NEWS link
1 parent 3c49294 commit 1cb28a6

File tree

5 files changed

+11
-8
lines changed

5 files changed

+11
-8
lines changed

CMakeLists.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,13 +7,13 @@ disallow_intree_builds()
77
if (POLICY CMP0048)
88
cmake_policy (SET CMP0048 NEW)
99
endif ()
10-
project (utf8proc VERSION 2.7.0 LANGUAGES C)
10+
project (utf8proc VERSION 2.8.0 LANGUAGES C)
1111

1212
# This is the ABI version number, which may differ from the
1313
# API version number (defined in utf8proc.h and above).
1414
# Be sure to also update these in Makefile and MANIFEST!
1515
set(SO_MAJOR 2)
16-
set(SO_MINOR 5)
16+
set(SO_MINOR 6)
1717
set(SO_PATCH 0)
1818

1919
option(UTF8PROC_INSTALL "Enable installation of utf8proc" On)

MANIFEST

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@ include/
22
include/utf8proc.h
33
lib/
44
lib/libutf8proc.a
5-
lib/libutf8proc.so -> libutf8proc.so.2.5.0
6-
lib/libutf8proc.so.2 -> libutf8proc.so.2.5.0
7-
lib/libutf8proc.so.2.5.0
5+
lib/libutf8proc.so -> libutf8proc.so.2.6.0
6+
lib/libutf8proc.so.2 -> libutf8proc.so.2.6.0
7+
lib/libutf8proc.so.2.6.0
88
lib/pkgconfig/
99
lib/pkgconfig/libutf8proc.pc

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ SOFLAG = -Wl,-soname
2323
# The API version number is defined in utf8proc.h.
2424
# Be sure to also update these ABI versions in MANIFEST and CMakeLists.txt!
2525
MAJOR=2
26-
MINOR=5
26+
MINOR=6
2727
PATCH=0
2828

2929
OS := $(shell uname)

NEWS.md

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
11
# utf8proc release history #
22

3-
## Version 2.8.0-alpha ##
3+
## Version 2.8.0 ##
4+
5+
2022-10-30
46

57
- Unicode 15 support ([#247]).
68

@@ -433,3 +435,4 @@ Release of version 1.0.1
433435
[#205]: https://github.com/JuliaStrings/utf8proc/issues/205
434436
[#224]: https://github.com/JuliaStrings/utf8proc/issues/224
435437
[#233]: https://github.com/JuliaStrings/utf8proc/issues/233
438+
[#247]: https://github.com/JuliaStrings/utf8proc/issues/247

utf8proc.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@
7171
/** The MAJOR version number (increased when backwards API compatibility is broken). */
7272
#define UTF8PROC_VERSION_MAJOR 2
7373
/** The MINOR version number (increased when new functionality is added in a backwards-compatible manner). */
74-
#define UTF8PROC_VERSION_MINOR 7
74+
#define UTF8PROC_VERSION_MINOR 8
7575
/** The PATCH version (increased for fixes that do not change the API). */
7676
#define UTF8PROC_VERSION_PATCH 0
7777
/** @} */

0 commit comments

Comments
 (0)