Skip to content

Commit 61c981a

Browse files
committed
Bump version to 1.0.0
1 parent 639b61e commit 61c981a

4 files changed

Lines changed: 7 additions & 7 deletions

File tree

CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ cmake_minimum_required(VERSION 3.15.0)
3838

3939
project(uriparser
4040
VERSION
41-
0.9.9
41+
1.0.0
4242
LANGUAGES
4343
C
4444
)

include/uriparser/Uri.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
/* 207ee4485d5a4690064bec14d369884451a49ae32e907b5bc6502c2bfa338ca1 (0.9.9+)
1+
/* 5abed1007be99942f49ffe603a894d277066b79b9cb824547af0f3b9481cb9ca (1.0.0+)
22
*
33
* uriparser - RFC 3986 URI parsing library
44
*

include/uriparser/UriBase.h

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -50,9 +50,9 @@
5050
# define URI_ANSI_TO_UNICODE(x) URI_ANSI_TO_UNICODE_HELPER(x)
5151

5252
/* Version */
53-
# define URI_VER_MAJOR 0
54-
# define URI_VER_MINOR 9
55-
# define URI_VER_RELEASE 9
53+
# define URI_VER_MAJOR 1
54+
# define URI_VER_MINOR 0
55+
# define URI_VER_RELEASE 0
5656
# define URI_VER_SUFFIX_ANSI ""
5757
# define URI_VER_SUFFIX_UNICODE URI_ANSI_TO_UNICODE(URI_VER_SUFFIX_ANSI)
5858

test/VersionSuite.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -36,6 +36,6 @@ TEST(VersionSuite, EnsureVersionDefinesInSync) {
3636

3737
TEST(VersionSuite, EnsureRuntimeVersionAsExpected) {
3838
// NOTE: This needs a bump for every release
39-
EXPECT_STREQ(uriBaseRuntimeVersionA(), "0.9.9");
40-
EXPECT_STREQ(uriBaseRuntimeVersionW(), L"0.9.9");
39+
EXPECT_STREQ(uriBaseRuntimeVersionA(), "1.0.0");
40+
EXPECT_STREQ(uriBaseRuntimeVersionW(), L"1.0.0");
4141
}

0 commit comments

Comments
 (0)