Skip to content

Commit b398fbd

Browse files
committed
Release 4.0.4. Delete R4.0.3
1 parent b9e9979 commit b398fbd

File tree

8 files changed

+17
-10
lines changed

8 files changed

+17
-10
lines changed

CHANGELOG.md

Lines changed: 9 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,19 @@
1-
4.0.3
1+
4.0.4
22
===========
33
January 08, 2018
44

55
* Updated ```CMakeLists.txt``` for cmake build. Added support for create Visual Studio Solution and the creation of packages for Linux systems. https://github.com/lexborisov/myhtml/issues/116
66
* Fixed segfault if we have </form> but not have a opening <form>. https://github.com/lexborisov/myhtml/issues/124
7-
* Fix cmake install path. https://github.com/lexborisov/myhtml/issues/126
7+
* Fixed cmake install path. https://github.com/lexborisov/myhtml/issues/126
8+
* Fixed rpm changelog date
89
* Minor bug fixes
910

11+
4.0.3
12+
===========
13+
January 08, 2018
14+
15+
* Delete
16+
1017
4.0.2
1118
===========
1219
November 07, 2017

Makefile.cfg

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ MODEST_BUILD_OS := UNDEF
55
#***************
66
PROJECT_VERSION_MAJOR := 4
77
PROJECT_VERSION_MINOR := 0
8-
PROJECT_VERSION_PATCH := 3
8+
PROJECT_VERSION_PATCH := 4
99

1010
PROJECT_VERSION_STRING := $(PROJECT_VERSION_MAJOR).$(PROJECT_VERSION_MINOR).$(PROJECT_VERSION_PATCH)
1111

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ This is one of module of the [Modest] project.
1313

1414
## Now
1515

16-
The current version is 4.0.3. [Last stable version](https://github.com/lexborisov/myhtml/releases/latest)
16+
The current version is 4.0.4. [Last stable version](https://github.com/lexborisov/myhtml/releases/latest)
1717

1818
See [Releases](https://github.com/lexborisov/myhtml/releases)
1919

include/myhtml/api.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@
3636

3737
#define MyHTML_VERSION_MAJOR 4
3838
#define MyHTML_VERSION_MINOR 0
39-
#define MyHTML_VERSION_PATCH 2
39+
#define MyHTML_VERSION_PATCH 4
4040

4141
#define MyHTML_VERSION_STRING MyCORE_STR(MyHTML_VERSION_MAJOR) MyCORE_STR(.) MyCORE_STR(MyHTML_VERSION_MINOR) MyCORE_STR(.) MyCORE_STR(MyHTML_VERSION_PATCH)
4242

include/myhtml/myosi.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626

2727
#define MyHTML_VERSION_MAJOR 4
2828
#define MyHTML_VERSION_MINOR 0
29-
#define MyHTML_VERSION_PATCH 2
29+
#define MyHTML_VERSION_PATCH 4
3030

3131
#define MyHTML_VERSION_STRING MyCORE_STR(MyHTML_VERSION_MAJOR) MyCORE_STR(.) MyCORE_STR(MyHTML_VERSION_MINOR) MyCORE_STR(.) MyCORE_STR(MyHTML_VERSION_PATCH)
3232

rpm/libmyhtml.spec

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
Name: libmyhtml
2-
Version: 4.0.3
2+
Version: 4.0.4
33
Release: 1%{?dist}
44
Summary: MyHTML is a fast HTML Parser implemented as a pure C99 library.
55
License: LGPLv2.1
@@ -44,7 +44,7 @@ make install prefix=$RPM_BUILD_ROOT PROJECT_INSTALL_LIBRARY=%{_usr}/%{_lib} PROJ
4444
%{!?_licensedir:%global license %doc}
4545

4646
%changelog
47-
* Mon Jan 08 2018 Alexander Borisov <[email protected]> 4.0.3-1
47+
* Mon Jan 08 2018 Alexander Borisov <[email protected]> 4.0.4-1
4848
- Please, see https://github.com/lexborisov/myhtml/blob/master/CHANGELOG.md
4949
* Tue Mar 21 2017 Alexander Borisov <[email protected]> 4.0.0-1
5050
- Initial release

source/myhtml/api.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@
3636

3737
#define MyHTML_VERSION_MAJOR 4
3838
#define MyHTML_VERSION_MINOR 0
39-
#define MyHTML_VERSION_PATCH 3
39+
#define MyHTML_VERSION_PATCH 4
4040

4141
#define MyHTML_VERSION_STRING MyCORE_STR(MyHTML_VERSION_MAJOR) MyCORE_STR(.) MyCORE_STR(MyHTML_VERSION_MINOR) MyCORE_STR(.) MyCORE_STR(MyHTML_VERSION_PATCH)
4242

source/myhtml/myosi.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626

2727
#define MyHTML_VERSION_MAJOR 4
2828
#define MyHTML_VERSION_MINOR 0
29-
#define MyHTML_VERSION_PATCH 3
29+
#define MyHTML_VERSION_PATCH 4
3030

3131
#define MyHTML_VERSION_STRING MyCORE_STR(MyHTML_VERSION_MAJOR) MyCORE_STR(.) MyCORE_STR(MyHTML_VERSION_MINOR) MyCORE_STR(.) MyCORE_STR(MyHTML_VERSION_PATCH)
3232

0 commit comments

Comments
 (0)